From dfeeae55e72e3acd14e320c4e0e1260a54b6f867 Mon Sep 17 00:00:00 2001 From: Jordan Brown Date: Thu, 14 Sep 2017 03:13:01 -0400 Subject: [PATCH] This is not a refactor (#30670) --- code/modules/events/wizard/aid.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/events/wizard/aid.dm b/code/modules/events/wizard/aid.dm index 799b9fe8cfe..37ab62161d9 100644 --- a/code/modules/events/wizard/aid.dm +++ b/code/modules/events/wizard/aid.dm @@ -11,11 +11,11 @@ for(var/mob/living/L in GLOB.mob_list) //Hey if a corgi has magic missle he should get the same benifit as anyone if(L.mind && L.mind.spell_list.len != 0) - var/spell_improved = 0 + var/spell_improved = FALSE for(var/obj/effect/proc_holder/spell/S in L.mind.spell_list) if(S.clothes_req) S.clothes_req = 0 - spell_improved = 1 + spell_improved = TRUE if(spell_improved) to_chat(L, "You suddenly feel like you never needed those garish robes in the first place...")