mirror of
https://github.com/correl/mage.git
synced 2024-11-15 19:19:33 +00:00
Merge origin/master
Conflicts: Mage/src/mage/abilities/effects/common/ReturnFromExileForSourceEffect.java
This commit is contained in:
parent
37a0c321b6
commit
1c085b30e2
2 changed files with 5 additions and 4 deletions
|
@ -106,9 +106,10 @@ public class ReturnFromExileForSourceEffect extends OneShotEffect {
|
||||||
if (card == null) {
|
if (card == null) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!game.isSimulation())
|
if (!game.isSimulation()) {
|
||||||
game.informPlayers(controller.getName() + " moves " + card.getLogName() + " from exile to " + zone.toString().toLowerCase());
|
game.informPlayers(controller.getName() + " moves " + card.getLogName() + " from exile to " + returnToZone.toString().toLowerCase());
|
||||||
card.moveToZone(zone, source.getSourceId(), game, tapped);
|
}
|
||||||
|
card.moveToZone(returnToZone, source.getSourceId(), game, tapped);
|
||||||
}
|
}
|
||||||
exile.clear();
|
exile.clear();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue