From ef224fe15c2d272c0a4e04e9466969499fda40c2 Mon Sep 17 00:00:00 2001 From: Oleg Agafonov Date: Thu, 16 Jan 2020 23:20:07 +0400 Subject: [PATCH] * Kroxa, Titan of Death's Hunger - fixed that it sacrifice itself on escape cast too; --- Mage.Sets/src/mage/cards/k/KroxaTitanOfDeathsHunger.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/cards/k/KroxaTitanOfDeathsHunger.java b/Mage.Sets/src/mage/cards/k/KroxaTitanOfDeathsHunger.java index 45aa6e8254..cec788c3f4 100644 --- a/Mage.Sets/src/mage/cards/k/KroxaTitanOfDeathsHunger.java +++ b/Mage.Sets/src/mage/cards/k/KroxaTitanOfDeathsHunger.java @@ -83,8 +83,7 @@ class KroxaTitanOfDeathsHungerEntersEffect extends OneShotEffect { if (permanent == null) { return false; } - Spell spell = game.getSpellOrLKIStack(source.getSourceId()); - if (spell != null && spell.getSpellAbility() instanceof EscapeAbility) { + if (EscapeAbility.wasCastedWithEscape(game, source.getSourceId(), source.getSourceObjectZoneChangeCounter())) { return false; } return permanent.sacrifice(source.getSourceId(), game);