From 8b1eb0ee2edf662b2f5acf43a5c5badfab2062d1 Mon Sep 17 00:00:00 2001 From: Northmoc Date: Wed, 3 Nov 2021 10:28:32 -0400 Subject: [PATCH] specifically looking for Auras --- forge-game/src/main/java/forge/game/GameActionUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/GameActionUtil.java b/forge-game/src/main/java/forge/game/GameActionUtil.java index c42a5e69277..49ccb02f8c3 100644 --- a/forge-game/src/main/java/forge/game/GameActionUtil.java +++ b/forge-game/src/main/java/forge/game/GameActionUtil.java @@ -179,7 +179,7 @@ public final class GameActionUtil { final Cost disturbCost = new Cost(k[1], true); SpellAbility newSA; - if (source.getAlternateState().getType().isEnchantment()) { + if (source.getAlternateState().getType().hasSubtype("Aura")) { newSA = source.getAlternateState().getFirstAbility().copyWithManaCostReplaced(activator, disturbCost); } else {