*Fixed Torpor Orb for ETB triggers that care about their host card.

This commit is contained in:
Hellfish
2011-09-13 20:58:43 +00:00
parent 0075bd769c
commit b053322a22

View File

@@ -380,7 +380,7 @@ public class TriggerHandler {
//Torpor Orb check
CardList torporOrbs = AllZoneUtil.getCardsInPlay("Torpor Orb");
if (torporOrbs.size() != 0 && mode.equals("ChangesZone") && regtrig.getMapParams().get("ValidCard").contains("Creature"))
if (torporOrbs.size() != 0 && mode.equals("ChangesZone") && ((regtrig.getMapParams().get("ValidCard").contains("Creature")) || (regtrig.getMapParams().get("ValidCard").contains("Self") && regtrig.getHostCard().isCreature() )))
{
return false;
}