mirror of
https://github.com/correl/mage.git
synced 2024-12-26 19:16:54 +00:00
- LKI zone for Nettlevine Blight.
This commit is contained in:
parent
95246e4da6
commit
7e36618954
1 changed files with 2 additions and 1 deletions
|
@ -133,7 +133,8 @@ class NettlevineBlightEffect extends OneShotEffect {
|
||||||
if (chosenPermanent != null) {
|
if (chosenPermanent != null) {
|
||||||
Card nettlevineBlightCard = game.getCard(source.getSourceId());
|
Card nettlevineBlightCard = game.getCard(source.getSourceId());
|
||||||
if (nettlevineBlightCard != null) {
|
if (nettlevineBlightCard != null) {
|
||||||
nettlevineBlightCard.putOntoBattlefield(game, Zone.GRAVEYARD, source.getSourceId(), newController.getId());
|
Zone zone = game.getState().getZone(nettlevineBlightCard.getId());
|
||||||
|
nettlevineBlightCard.putOntoBattlefield(game, zone, source.getSourceId(), newController.getId());
|
||||||
game.getState().setValue("attachTo:" + nettlevineBlight.getId(), chosenPermanent);
|
game.getState().setValue("attachTo:" + nettlevineBlight.getId(), chosenPermanent);
|
||||||
chosenPermanent.addAttachment(nettlevineBlight.getId(), game);
|
chosenPermanent.addAttachment(nettlevineBlight.getId(), game);
|
||||||
return true;
|
return true;
|
||||||
|
|
Loading…
Reference in a new issue