fixed some incomplete implementations

This commit is contained in:
Evan Kranzler 2018-09-02 23:02:03 -04:00
parent 22585729c4
commit e9045fb68e
2 changed files with 12 additions and 0 deletions

View file

@ -2572,6 +2572,13 @@ public class TestPlayer implements Player {
return computerPlayer.scry(value, source, game);
}
@Override
public boolean surveil(int value, Ability source,
Game game
) {
return computerPlayer.surveil(value, source, game);
}
@Override
public boolean moveCards(Card card, Zone toZone,
Ability source, Game game

View file

@ -1257,6 +1257,11 @@ public class PlayerStub implements Player {
return false;
}
@Override
public boolean surveil(int value, Ability source, Game game) {
return false;
}
@Override
public boolean addTargets(Ability ability, Game game) {
return false;