diff --git a/Mage.Sets/src/mage/cards/n/NecromanticSelection.java b/Mage.Sets/src/mage/cards/n/NecromanticSelection.java index ca6dd93db76..b2fec3f42bc 100644 --- a/Mage.Sets/src/mage/cards/n/NecromanticSelection.java +++ b/Mage.Sets/src/mage/cards/n/NecromanticSelection.java @@ -72,10 +72,12 @@ class NecromanticSelectionEffect extends OneShotEffect { public boolean apply(Game game, Ability source) { Player controller = game.getPlayer(source.getControllerId()); MageObject sourceObject = game.getObject(source.getSourceId()); - if (sourceObject != null && controller != null) { + if (sourceObject != null + && controller != null) { Cards cards = new CardsImpl(); for (Permanent permanent : game.getBattlefield().getActivePermanents(StaticFilters.FILTER_PERMANENT_CREATURE, controller.getId(), source.getSourceId(), game)) { permanent.destroy(source, game, false); + game.checkStateAndTriggered(); // Meren of the Clan Nel Toth bug #8515 if (game.getState().getZone(permanent.getId()) == Zone.GRAVEYARD) { cards.add(permanent); }