From 9f5114ee51985304aa5d7692fe804fbcdf67244b Mon Sep 17 00:00:00 2001 From: Remie Richards Date: Thu, 24 Mar 2016 20:38:15 +0000 Subject: [PATCH] istype -> ishuman --- code/modules/hydroponics/beekeeping/beebox.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/hydroponics/beekeeping/beebox.dm b/code/modules/hydroponics/beekeeping/beebox.dm index f1d934e82af..4a9f9f84c37 100644 --- a/code/modules/hydroponics/beekeeping/beebox.dm +++ b/code/modules/hydroponics/beekeeping/beebox.dm @@ -183,7 +183,7 @@ /obj/structure/beebox/attack_hand(mob/user) - if(istype(user, /mob/living/carbon/human)) + if(ishuman(user)) if(!user.bee_friendly()) //Time to get stung! var/bees = FALSE @@ -236,4 +236,4 @@ QB.name = queen_bee.name if(!user.put_in_active_hand(QB)) QB.loc = get_turf(src) - visible_message("[user] removes the queen from the apiary.") \ No newline at end of file + visible_message("[user] removes the queen from the apiary.")