diff options
Diffstat (limited to 'init.lua')
-rw-r--r-- | init.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -228,7 +228,7 @@ end function playereffects.cancel_effect_type(effect_type_id, cancel_all, playername) local effects = playereffects.get_player_effects(playername) - if(cancel_all==nil) then all = false end + if(cancel_all==nil) then cancel_all = false end for e=1, #effects do if(effects[e].effect_type_id == effect_type_id) then playereffects.cancel_effect(effects[e].effect_id) |