Merge branch 'magefree/master'

This commit is contained in:
Samuel Sandeen 2016-09-08 19:12:19 -04:00
commit ac6a289275
95 changed files with 2166 additions and 145 deletions

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);
}