From e7d89af8dd26a8e1f7b89ee6b23a579472f7c40a Mon Sep 17 00:00:00 2001 From: Neerti Date: Mon, 11 Sep 2017 18:42:18 -0400 Subject: [PATCH] Removes Anti-Bird mechanisms from Defibs For some reason, small mobs, which include Teshari and Prometheans (and monkeys) cannot use the defib unit. They can wear the unit but can't actually 'hold' the paddles in both hands, which seems a bit inconsistent and I'd rather just remove the 'no birds allowed' code. --- code/game/objects/items/devices/defib.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/defib.dm b/code/game/objects/items/devices/defib.dm index 20c516bbad..b9b8af0c0d 100644 --- a/code/game/objects/items/devices/defib.dm +++ b/code/game/objects/items/devices/defib.dm @@ -230,7 +230,7 @@ /obj/item/weapon/shockpaddles/update_held_icon() var/mob/living/M = loc - if(istype(M) && !issmall(M) && M.item_is_in_hands(src) && !M.hands_are_full()) + if(istype(M) && M.item_is_in_hands(src) && !M.hands_are_full()) wielded = 1 name = "[initial(name)] (wielded)" else