From e1873e77181fa835507689f1224e11b8e7b43914 Mon Sep 17 00:00:00 2001 From: AzuleUtama <44248086+AzuleUtama@users.noreply.github.com> Date: Sat, 1 Oct 2022 06:42:44 +0100 Subject: [PATCH] Inhand small mobs now detail if they're dead/asleep when examined (#19124) * Inhand small mobs now detail if they're dead/asleep when examined Fixes #19097 * Checks on examine instead --- code/modules/mob/holder.dm | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/code/modules/mob/holder.dm b/code/modules/mob/holder.dm index 330ab4447da..8ecf6583613 100644 --- a/code/modules/mob/holder.dm +++ b/code/modules/mob/holder.dm @@ -41,6 +41,10 @@ for(var/mob/living/M in contents) M.ex_act(intensity) +/obj/item/holder/examine(mob/user) + for(var/mob/living/M in contents) + . += M.examine(user) + /obj/item/holder/container_resist(mob/living/L) var/mob/M = src.loc //Get our mob holder (if any).