From e7fcbd07cb68889f3e1bc62bc4dde0e30dba271d Mon Sep 17 00:00:00 2001 From: Dip Date: Mon, 5 Oct 2020 09:57:07 -0300 Subject: [PATCH] monkeys holding monkeys --- code/datums/elements/mob_holder.dm | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/code/datums/elements/mob_holder.dm b/code/datums/elements/mob_holder.dm index 38c62f4f..1d2cf442 100644 --- a/code/datums/elements/mob_holder.dm +++ b/code/datums/elements/mob_holder.dm @@ -76,6 +76,7 @@ lefthand_file = 'icons/mob/animals_held_lh.dmi' icon_state = "" w_class = WEIGHT_CLASS_BULKY + dynamic_hair_suffix = "" var/mob/living/held_mob var/can_head = FALSE @@ -165,6 +166,11 @@ L.visible_message("[held_mob] escapes from [L]!", "[held_mob] escapes your grip!") release() +/obj/item/clothing/head/mob_holder/mob_can_equip(mob/living/M, mob/living/equipper, slot, disable_warning = FALSE, bypass_equip_delay_self = FALSE) + if(!ishuman(M)) //monkeys holding monkeys holding monkeys... + return FALSE + return ..() + /obj/item/clothing/head/mob_holder/assume_air(datum/gas_mixture/env) var/atom/location = loc if(!loc)