From 848f3910e6d4d896a9504874a06338c5d9071206 Mon Sep 17 00:00:00 2001 From: Useroth Date: Tue, 28 May 2019 09:32:59 +0200 Subject: [PATCH] Oops. Now it compiles fine. --- code/modules/clothing/shoes/taeclowndo.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/shoes/taeclowndo.dm b/code/modules/clothing/shoes/taeclowndo.dm index 3a4612933d..20d9fa6b70 100644 --- a/code/modules/clothing/shoes/taeclowndo.dm +++ b/code/modules/clothing/shoes/taeclowndo.dm @@ -12,9 +12,9 @@ . = ..() if(!ishuman(user)) return - if(!(user.has_trait(TRAIT_CLUMSY)) && !(user.mind && user.mind.assigned_role == "Clown")) - return var/mob/living/carbon/human/H = user + if(!(H.has_trait(TRAIT_CLUMSY)) && !(H.mind && H.mind.assigned_role == "Clown")) + return if(slot == SLOT_SHOES) spells = new for(var/spell in spelltypes)