From a15ae140f2afbc8300dbfa7f2c2cab1dad21b73d Mon Sep 17 00:00:00 2001 From: alexkar598 <> Date: Mon, 2 Jul 2018 15:15:58 -0400 Subject: [PATCH] Signs are pointing me that there will be a clone arm-oh wait...the signs were just exploited by the clown and duplicated --- code/game/objects/structures/signs.dm | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/code/game/objects/structures/signs.dm b/code/game/objects/structures/signs.dm index 199691aa4db..6168d637c56 100644 --- a/code/game/objects/structures/signs.dm +++ b/code/game/objects/structures/signs.dm @@ -48,7 +48,10 @@ /obj/item/sign/attackby(obj/item/tool as obj, mob/user as mob) //construction if(istype(tool, /obj/item/screwdriver) && isturf(user.loc)) var/direction = input("In which direction?", "Select direction.") in list("North", "East", "South", "West", "Cancel") - if(direction == "Cancel") return + if(direction == "Cancel") + return + if(QDELETED(src)) + return var/obj/structure/sign/S = new(user.loc) switch(direction) if("North") @@ -59,7 +62,8 @@ S.pixel_y = -32 if("West") S.pixel_x = -32 - else return + else + return S.name = name S.desc = desc S.icon_state = sign_state