diff --git a/code/modules/spells/spell_types/togglebuff.dm b/code/modules/spells/spell_types/togglebuff.dm index bee444281a..d1c4f55393 100644 --- a/code/modules/spells/spell_types/togglebuff.dm +++ b/code/modules/spells/spell_types/togglebuff.dm @@ -14,7 +14,7 @@ if(user.has_status_effect(STATUS_EFFECT_MANTRA)) user.remove_status_effect(STATUS_EFFECT_MANTRA) else - user.add_status_effect(STATUS_EFFECT_MANTRA) + user.apply_status_effect(STATUS_EFFECT_MANTRA) /obj/effect/proc_holder/spell/self/asura name = "Asura's Wrath" @@ -32,4 +32,4 @@ if(user.has_status_effect(STATUS_EFFECT_ASURA)) user.remove_status_effect(STATUS_EFFECT_ASURA) else - user.add_status_effect(STATUS_EFFECT_ASURA) + user.apply_status_effect(STATUS_EFFECT_ASURA)