mirror of
https://github.com/magefree/mage.git
synced 2026-01-09 20:32:06 -08:00
Fix multiple cards not saying which revealed cards were chosen to put into hand. Closes #9949
This commit is contained in:
parent
e2271d79fb
commit
03b82ff7ee
10 changed files with 36 additions and 10 deletions
|
|
@ -3813,6 +3813,11 @@ public class TestPlayer implements Player {
|
|||
return computerPlayer.moveCardToHandWithInfo(card, source, game, withName);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean moveCardsToHandWithInfo(Cards cards, Ability source, Game game, boolean withName) {
|
||||
return computerPlayer.moveCardsToHandWithInfo(cards, source, 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);
|
||||
|
|
|
|||
|
|
@ -1204,6 +1204,11 @@ public class PlayerStub implements Player {
|
|||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean moveCardsToHandWithInfo(Cards cards, Ability source, Game game, boolean withName) {
|
||||
return false;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean moveCardToExileWithInfo(Card card, UUID exileId, String exileName, Ability source, Game game, Zone fromZone, boolean withName) {
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue