From 084b5657ad2d12eadc7500a61d235425c2e5dad4 Mon Sep 17 00:00:00 2001 From: magenoxx Date: Tue, 28 Jun 2011 19:41:29 +0400 Subject: [PATCH] Fixed Issue 176. --- Mage.Common/src/mage/view/CardsView.java | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Mage.Common/src/mage/view/CardsView.java b/Mage.Common/src/mage/view/CardsView.java index dbba097dc4..56b02a011e 100644 --- a/Mage.Common/src/mage/view/CardsView.java +++ b/Mage.Common/src/mage/view/CardsView.java @@ -62,7 +62,9 @@ public class CardsView extends HashMap { sourceCard = game.getCard(ability.getSourceId()); break; case BATTLEFIELD: - sourceCard = game.getLastKnownInformation(ability.getSourceId(), Zone.BATTLEFIELD); + sourceCard = game.getPermanent(ability.getSourceId()); + if (sourceCard == null) + sourceCard = game.getLastKnownInformation(ability.getSourceId(), Zone.BATTLEFIELD); break; } if (sourceCard != null) {