* Removed some data from player restoring to fix unintended draws after a player concedes game (#1205)

This commit is contained in:
LevelX2 2015-08-18 17:20:04 +02:00
parent 692148d3c2
commit aa1eb354ef
7 changed files with 65 additions and 29 deletions

View file

@ -1358,6 +1358,11 @@ public class TestPlayer implements Player {
computerPlayer.resetPassed();
}
@Override
public void resetPlayerPassedActions() {
computerPlayer.resetPlayerPassedActions();
}
@Override
public void quit(Game game) {
computerPlayer.quit(game);
@ -1701,6 +1706,11 @@ public class TestPlayer implements Player {
return computerPlayer.moveCardToHandWithInfo(card, sourceId, game, withName);
}
@Override
public boolean moveCardsToExile(Card card, Ability source, Game game, boolean withName, UUID exileId, String exileZoneName) {
return computerPlayer.moveCardsToExile(card, source, game, withName, exileId, exileZoneName);
}
@Override
public boolean moveCardsToExile(Set<Card> cards, Ability source, Game game, boolean withName, UUID exileId, String exileZoneName) {
return computerPlayer.moveCardsToExile(cards, source, game, withName, exileId, exileZoneName);