combat bug fix

This commit is contained in:
2024-03-02 14:54:17 -06:00
parent 349b88f142
commit 4eff71f288
7 changed files with 48 additions and 28 deletions
+1 -1
View File
@@ -1211,7 +1211,7 @@ public class CharacterItemManager {
//i.clearEffects();
for (String name : i.getEffects().keySet()) {
Effect eff = i.getEffects().get(name);
if (eff.getDuration() < 2000)
if (!eff.isStatic())
i.endEffect(name);
}
}