From 6f00ea33975cd2b642ec4efad34b0faff8843d8b Mon Sep 17 00:00:00 2001 From: tool4EvEr Date: Thu, 3 Feb 2022 20:42:04 +0100 Subject: [PATCH] Amorphous Axe: fix AllCreatureTypes not being removed when unattached --- forge-game/src/main/java/forge/game/StaticEffect.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/forge-game/src/main/java/forge/game/StaticEffect.java b/forge-game/src/main/java/forge/game/StaticEffect.java index 7afd723cef9..aa44c48538e 100644 --- a/forge-game/src/main/java/forge/game/StaticEffect.java +++ b/forge-game/src/main/java/forge/game/StaticEffect.java @@ -242,7 +242,7 @@ public class StaticEffect { } // remove Types - if (hasParam("AddType") || hasParam("RemoveType")) { + if (hasParam("AddType") || hasParam("AddAllCreatureTypes") || hasParam("RemoveType")) { // the view is updated in GameAction#checkStaticAbilities to avoid flickering affectedCard.removeChangedCardTypes(getTimestamp(), ability.getId(), false); }