From 8aa5fd2ff6ba898f3c8f3f74eba248316c60b94f Mon Sep 17 00:00:00 2001 From: Hornygranny Date: Tue, 23 Sep 2014 10:43:26 -0700 Subject: [PATCH] ishuman changed to istype for previously defined scope --- code/game/objects/structures/tables_racks.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/structures/tables_racks.dm b/code/game/objects/structures/tables_racks.dm index 7e9a9a7a892..1bc18efd8ca 100644 --- a/code/game/objects/structures/tables_racks.dm +++ b/code/game/objects/structures/tables_racks.dm @@ -697,7 +697,7 @@ Destroy type values: ..() /obj/structure/table/MouseDrop_T(mob/target, mob/living/carbon/human/user) - if(istype(target) && user == target && ishuman(user)) + if(istype(target) && user == target && istype(user)) if(user.canmove) climb_table(user)