mirror of
https://github.com/correl/mage.git
synced 2024-11-22 03:00:11 +00:00
small update to previous commit
This commit is contained in:
parent
1f24af8716
commit
0ad967a5b3
2 changed files with 12 additions and 1 deletions
|
@ -2368,6 +2368,11 @@ public class TestPlayer implements Player {
|
|||
return computerPlayer.gainLife(amount, game, sourceId);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int damage(int damage, UUID sourceId, Game game) {
|
||||
return computerPlayer.damage(damage, sourceId, game);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int damage(int damage, UUID sourceId, Game game, boolean combatDamage, boolean preventable) {
|
||||
return computerPlayer.damage(damage, sourceId, game, combatDamage, preventable);
|
||||
|
|
|
@ -138,6 +138,11 @@ public class PlayerStub implements Player {
|
|||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int damage(int damage, UUID sourceId, Game game) {
|
||||
return 0;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int damage(int damage, UUID sourceId, Game game, boolean combatDamage, boolean preventable) {
|
||||
return 0;
|
||||
|
@ -598,7 +603,8 @@ public class PlayerStub implements Player {
|
|||
}
|
||||
|
||||
@Override
|
||||
public void lookAtAllLibraries(Ability source, Game game) {}
|
||||
public void lookAtAllLibraries(Ability source, Game game) {
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean canPlayLand() {
|
||||
|
|
Loading…
Reference in a new issue