mirror of
https://github.com/Card-Forge/forge.git
synced 2025-11-16 10:48:00 +00:00
- Added a check for Torpor Orb to checkETBEffects.
This commit is contained in:
@@ -340,6 +340,11 @@ public class SpellPermanent extends Spell {
|
||||
* @return a boolean.
|
||||
*/
|
||||
public static boolean checkETBEffects(final Card card, final SpellAbility sa, final String api) {
|
||||
|
||||
if(card.isCreature() && AllZoneUtil.isCardInPlay("Torpor Orb")) {
|
||||
return true;
|
||||
}
|
||||
|
||||
// Trigger play improvements
|
||||
final ArrayList<Trigger> triggers = card.getTriggers();
|
||||
for (final Trigger tr : triggers) {
|
||||
|
||||
Reference in New Issue
Block a user