Removed debug command.

This commit is contained in:
LevelX2 2018-01-28 01:14:50 +01:00
parent 22c30a43f5
commit b60cd3d40e

View file

@ -1413,7 +1413,6 @@ public class ComputerPlayer extends PlayerImpl implements Player {
@Override @Override
public boolean chooseTarget(Outcome outcome, Cards cards, TargetCard target, Ability source, Game game) { public boolean chooseTarget(Outcome outcome, Cards cards, TargetCard target, Ability source, Game game) {
log.debug("chooseTarget");
if (cards == null || cards.isEmpty()) { if (cards == null || cards.isEmpty()) {
return target.isRequired(source); return target.isRequired(source);
} }
@ -1633,12 +1632,12 @@ public class ComputerPlayer extends PlayerImpl implements Player {
} }
public static Deck buildDeck(List<Card> cardPool, final List<ColoredManaSymbol> colors) { public static Deck buildDeck(List<Card> cardPool, final List<ColoredManaSymbol> colors) {
return buildDeck(cardPool, colors, false); return buildDeck(cardPool, colors, false);
} }
public static Deck buildDeck(List<Card> cardPool, final List<ColoredManaSymbol> colors, boolean onlyBasicLands) { public static Deck buildDeck(List<Card> cardPool, final List<ColoredManaSymbol> colors, boolean onlyBasicLands) {
if (onlyBasicLands) { if (onlyBasicLands) {
return buildDeckWithOnlyBasicLands(cardPool); return buildDeckWithOnlyBasicLands(cardPool);
} else { } else {
return buildDeckWithNormalCards(cardPool, colors); return buildDeckWithNormalCards(cardPool, colors);
} }