mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
* Removed some data from player restoring to fix unintended draws after a player concedes game (#1205)
This commit is contained in:
parent
692148d3c2
commit
aa1eb354ef
7 changed files with 65 additions and 29 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue