From ebb9d7c22fc2889872570ebd0665feed10d86ee0 Mon Sep 17 00:00:00 2001 From: Jeff Wadsworth Date: Thu, 6 Jan 2022 15:39:04 -0600 Subject: [PATCH] - Fixed #8515 --- Mage.Sets/src/mage/cards/n/NecromanticSelection.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) 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); }