mirror of
https://github.com/magefree/mage.git
synced 2025-12-22 03:22:00 -08: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);
|
return computerPlayer.scry(value, source, game);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean surveil(int value, Ability source,
|
||||||
|
Game game
|
||||||
|
) {
|
||||||
|
return computerPlayer.surveil(value, source, game);
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean moveCards(Card card, Zone toZone,
|
public boolean moveCards(Card card, Zone toZone,
|
||||||
Ability source, Game game
|
Ability source, Game game
|
||||||
|
|
|
||||||
|
|
@ -1257,6 +1257,11 @@ public class PlayerStub implements Player {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean surveil(int value, Ability source, Game game) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean addTargets(Ability ability, Game game) {
|
public boolean addTargets(Ability ability, Game game) {
|
||||||
return false;
|
return false;
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue