mirror of
https://github.com/correl/mage.git
synced 2025-04-13 01:01:11 -09:00
* Ghastly Conscription - Fixed that the returned creatures were always under the control of owner instead of Ghastly Conscription controller.
This commit is contained in:
parent
20c75735bb
commit
77cd43e8da
1 changed files with 2 additions and 2 deletions
|
@ -115,8 +115,8 @@ class GhastlyConscriptionEffect extends OneShotEffect {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
MageObjectReference objectReference= new MageObjectReference(card.getId(), card.getZoneChangeCounter() +1, game);
|
MageObjectReference objectReference= new MageObjectReference(card.getId(), card.getZoneChangeCounter() +1, game);
|
||||||
game.addEffect(new BecomesFaceDownCreatureEffect(manaCosts, objectReference, Duration.Custom, FaceDownType.MANIFESTED), newSource);
|
game.addEffect(new BecomesFaceDownCreatureEffect(manaCosts, objectReference, Duration.Custom, FaceDownType.MANIFESTED), newSource);
|
||||||
if (card.moveToZone(Zone.BATTLEFIELD, newSource.getSourceId(), game, false)) {
|
if (controller.putOntoBattlefieldWithInfo(card, game, Zone.EXILED, source.getSourceId())) {
|
||||||
game.informPlayers(new StringBuilder(controller.getName())
|
game.informPlayers(new StringBuilder(controller.getName())
|
||||||
.append(" puts facedown card from exile onto the battlefield").toString());
|
.append(" puts facedown card from exile onto the battlefield").toString());
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue