From b006d66a5a38a6d20b93b9eaed7a0ff8caa821da Mon Sep 17 00:00:00 2001 From: "maurer.it" Date: Fri, 31 Dec 2010 12:40:28 -0500 Subject: [PATCH] Fixes an issue with multiple Kalastria Highborn triggers (I never included Zone.ALL in the switch). --- Mage.Common/src/mage/view/CardsView.java | 1 + 1 file changed, 1 insertion(+) diff --git a/Mage.Common/src/mage/view/CardsView.java b/Mage.Common/src/mage/view/CardsView.java index 8625ceb0a1d..d70cd0949ac 100644 --- a/Mage.Common/src/mage/view/CardsView.java +++ b/Mage.Common/src/mage/view/CardsView.java @@ -64,6 +64,7 @@ public class CardsView extends HashMap { Card sourceCard = null; String sourceName = null; switch ( ability.getZone() ) { + case ALL: case EXILED: case GRAVEYARD: sourceCard = game.getCard(ability.getSourceId());