From 47fa6ce819ccec53e3e36b0b049d54f707bec899 Mon Sep 17 00:00:00 2001 From: Nicaragua Date: Tue, 19 Feb 2019 19:37:04 -0300 Subject: [PATCH] fix missing ! hmm --- code/modules/mob/living/simple_animal/bot/construction.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_animal/bot/construction.dm b/code/modules/mob/living/simple_animal/bot/construction.dm index 94239d63d47..dc53ef59b2b 100644 --- a/code/modules/mob/living/simple_animal/bot/construction.dm +++ b/code/modules/mob/living/simple_animal/bot/construction.dm @@ -492,7 +492,7 @@ var/robot_arm = /obj/item/robot_parts/l_arm //Honkbot Assembly /obj/item/storage/box/clown/attackby(obj/item/W, mob/user, params) - if(istype(W, /obj/item/robot_parts/l_arm) && !istype(W, /obj/item/robot_parts/r_arm)) + if(!istype(W, /obj/item/robot_parts/l_arm) && !istype(W, /obj/item/robot_parts/r_arm)) return ..() else robot_arm = W.type