From e6d9d2ef39e2534b41fbbf1a37870eab34616b08 Mon Sep 17 00:00:00 2001 From: Krausus Date: Wed, 10 Jun 2015 22:53:54 -0400 Subject: [PATCH] Fixes the No Clothes spell You can now be a proper naked wizard again. --- code/datums/spell.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/datums/spell.dm b/code/datums/spell.dm index f0275ae059d..95e8083d602 100644 --- a/code/datums/spell.dm +++ b/code/datums/spell.dm @@ -88,7 +88,7 @@ var/list/spells = typesof(/obj/effect/proc_holder/spell) //needed for the badmin if(user.is_muzzled()) user << "Mmmf mrrfff!" return 0 - var/obj/effect/proc_holder/spell/wizard/noclothes/spell = locate() in user.spell_list + var/obj/effect/proc_holder/spell/wizard/noclothes/spell = locate() in (user.spell_list | (user.mind ? user.mind.spell_list : list())) if(clothes_req && !(spell && istype(spell)))//clothes check if(!istype(user, /mob/living/carbon/human)) user << "You aren't a human, Why are you trying to cast a human spell, silly non-human? Casting human spells is for humans."