* Training Grounds - Fixed bug that locked the game if activated ability of own creature had no mana costs.

This commit is contained in:
LevelX2 2014-04-25 12:10:57 +02:00
parent 300081d302
commit ec692902c7
3 changed files with 36 additions and 28 deletions

View file

@ -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() {