small update to previous commit

This commit is contained in:
Evan Kranzler 2019-01-04 12:31:10 -05:00
parent 1f24af8716
commit 0ad967a5b3
2 changed files with 12 additions and 1 deletions

View file

@ -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);

View file

@ -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() {