From 656d95ce2f74dcfb0bbc3e4da3d85b4488a047e3 Mon Sep 17 00:00:00 2001 From: kappa-sama Date: Tue, 12 Jan 2021 09:57:36 -0500 Subject: [PATCH] i rewrote this at 2 in the morning --- code/modules/spells/spell_types/togglebuff.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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)