mirror of
https://github.com/correl/mage.git
synced 2024-11-16 03:00:12 +00:00
* Mesmeric Fiend - Fixed that the exiled card did not get back to hadn of target opponent.
This commit is contained in:
parent
7ed967ac7f
commit
08d93a9e24
1 changed files with 1 additions and 1 deletions
|
@ -142,7 +142,7 @@ class MesmericFiendLeaveEffect extends OneShotEffect {
|
||||||
public boolean apply(Game game, Ability source) {
|
public boolean apply(Game game, Ability source) {
|
||||||
Player controller = game.getPlayer(source.getControllerId());
|
Player controller = game.getPlayer(source.getControllerId());
|
||||||
if (controller != null) {
|
if (controller != null) {
|
||||||
ExileZone exZone = game.getExile().getExileZone(CardUtil.getCardExileZoneId(game, source));
|
ExileZone exZone = game.getExile().getExileZone(CardUtil.getCardExileZoneId(game, source.getSourceId(), true));
|
||||||
if (exZone != null) {
|
if (exZone != null) {
|
||||||
for (Card card : exZone.getCards(game)) {
|
for (Card card : exZone.getCards(game)) {
|
||||||
if (card != null) {
|
if (card != null) {
|
||||||
|
|
Loading…
Reference in a new issue