mirror of
https://github.com/correl/mage.git
synced 2024-12-26 03:00:11 +00:00
* Dead Man's Chest - fixed exile window text;
This commit is contained in:
parent
bd0974eecd
commit
f32976f27d
1 changed files with 1 additions and 1 deletions
|
@ -92,7 +92,7 @@ class DeadMansChestEffect extends OneShotEffect {
|
|||
if (owner != null && amount > 0) {
|
||||
Set<Card> cards = owner.getLibrary().getTopCards(game, amount);
|
||||
if (!cards.isEmpty()) {
|
||||
controller.moveCardsToExile(cards, source, game, true, source.getSourceId(), sourceObject.getLogName());
|
||||
controller.moveCardsToExile(cards, source, game, true, source.getSourceId(), sourceObject.getName());
|
||||
for (Card card : cards) {
|
||||
if (!card.isLand()) {
|
||||
ContinuousEffect effect = new PlayFromNotOwnHandZoneTargetEffect(Zone.EXILED, Duration.Custom);
|
||||
|
|
Loading…
Reference in a new issue