diff --git a/wadsrc/static/zscript/inventory/powerups.txt b/wadsrc/static/zscript/inventory/powerups.txt index 078647a23..6b8f39602 100644 --- a/wadsrc/static/zscript/inventory/powerups.txt +++ b/wadsrc/static/zscript/inventory/powerups.txt @@ -93,7 +93,7 @@ class Powerup : Inventory { Destroy (); } - if (EffectTics > 0 && --EffectTics == 0) + if (EffectTics == 0 || (EffectTics > 0 && --EffectTics == 0)) { Destroy (); }