Remove needs an object not an index value.

This commit is contained in:
2023-03-15 09:25:18 -04:00
parent 16db4d15bc
commit 1945412f5a
+1 -1
View File
@@ -1669,7 +1669,7 @@ public class MobileFSM {
String des = act.stackType; String des = act.stackType;
if (target.getEffects() != null && target.getEffects().containsKey(des)) if (target.getEffects() != null && target.getEffects().containsKey(des))
powerTokens.remove(powerToken); powerTokens.remove(Integer.valueOf(powerToken));
} }
} }