From 7fd1e24378ddff02eb7c749dbaf72f0efee585cd Mon Sep 17 00:00:00 2001 From: LevelX2 Date: Mon, 20 May 2013 10:36:23 +0200 Subject: [PATCH] Fixed #221, Crypt Incursion exiling non creatures instead of creatures and giving life to target player instead controller. --- Mage.Sets/src/mage/sets/dragonsmaze/CryptIncursion.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mage.Sets/src/mage/sets/dragonsmaze/CryptIncursion.java b/Mage.Sets/src/mage/sets/dragonsmaze/CryptIncursion.java index 08573aaad96..35aec19b701 100644 --- a/Mage.Sets/src/mage/sets/dragonsmaze/CryptIncursion.java +++ b/Mage.Sets/src/mage/sets/dragonsmaze/CryptIncursion.java @@ -92,13 +92,13 @@ class CryptIncursionEffect extends OneShotEffect { if (player != null && targetPlayer != null) { int exiledCards = 0; for (Card card: targetPlayer.getGraveyard().getCards(game)) { - if (!filter.match(card, game)) { + if (filter.match(card, game)) { if (card.moveToExile(null, "", source.getId(), game)) { exiledCards++; } } } - targetPlayer.gainLife(exiledCards * 3, game); + player.gainLife(exiledCards * 3, game); return true; } return false;