mirror of
https://github.com/magefree/mage.git
synced 2025-12-28 14:32:06 -08:00
* Training Grounds - Fixed bug that locked the game if activated ability of own creature had no mana costs.
This commit is contained in:
parent
300081d302
commit
ec692902c7
3 changed files with 36 additions and 28 deletions
|
|
@ -35,13 +35,14 @@ import java.util.Set;
|
|||
/**
|
||||
*
|
||||
* @author BetaSteward_at_googlemail.com
|
||||
* @param <T>
|
||||
*/
|
||||
public class ChoiceImpl<T extends ChoiceImpl<T>> implements Choice, Serializable {
|
||||
|
||||
protected boolean chosen;
|
||||
protected boolean required;
|
||||
protected String choice;
|
||||
protected Set<String> choices = new LinkedHashSet<String>();
|
||||
protected Set<String> choices = new LinkedHashSet<>();
|
||||
protected String message;
|
||||
|
||||
public ChoiceImpl() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue