mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-18 19:58:00 +00:00
*Fixed Torpor Orb for ETB triggers that care about their host card.
This commit is contained in:
@@ -380,7 +380,7 @@ public class TriggerHandler {
|
|||||||
//Torpor Orb check
|
//Torpor Orb check
|
||||||
CardList torporOrbs = AllZoneUtil.getCardsInPlay("Torpor Orb");
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user