- LKI zone for Nettlevine Blight.

This commit is contained in:
Jeff 2017-07-11 13:02:43 -05:00
parent 95246e4da6
commit 7e36618954

View file

@ -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;