TestPlayer should not scry down cards at the start of the game.

This commit is contained in:
emerald000 2016-09-08 09:09:32 -04:00
parent 42dc714883
commit 0af7871804

View file

@ -2118,6 +2118,10 @@ public class TestPlayer implements Player {
@Override
public boolean scry(int value, Ability source, Game game) {
// Don't scry at the start of the game.
if (game.getTurnNum() == 1 && game.getStep() == null) {
return false;
}
return computerPlayer.scry(value, source, game);
}