mirror of
https://github.com/magefree/mage.git
synced 2026-01-10 21:02:08 -08:00
Merge branch 'magefree/master'
This commit is contained in:
commit
ac6a289275
95 changed files with 2166 additions and 145 deletions
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue