mirror of
https://github.com/correl/mage.git
synced 2025-03-12 17:00:08 -09:00
fixed some incomplete implementations
This commit is contained in:
parent
22585729c4
commit
e9045fb68e
2 changed files with 12 additions and 0 deletions
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Reference in a new issue