From 98e6816d62997848347b7cfa25efa7ca66b272b4 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Fri, 18 Sep 2020 10:53:12 +0200 Subject: [PATCH] [MIRROR] Monkeys now examine themselves instead of self hugging (#866) * Monkeys now examine themselves instead of self hugging (#53745) More consistent with how humans interact. Fixes #53743. * Monkeys now examine themselves instead of self hugging Co-authored-by: infoman-cor <64935694+infoman-cor@users.noreply.github.com> --- code/modules/mob/living/carbon/monkey/monkey_defense.dm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/code/modules/mob/living/carbon/monkey/monkey_defense.dm b/code/modules/mob/living/carbon/monkey/monkey_defense.dm index 1c7230081cf..65d7a57f47e 100644 --- a/code/modules/mob/living/carbon/monkey/monkey_defense.dm +++ b/code/modules/mob/living/carbon/monkey/monkey_defense.dm @@ -1,4 +1,9 @@ /mob/living/carbon/monkey/help_shake_act(mob/living/carbon/M) + if(M == src) + //monkey's currently don't have check_self_for_injuries() and this is the next best thing + to_chat(src, "You examine yourself.") + M.examinate(src) + return if(health < 0 && ishuman(M)) var/mob/living/carbon/human/H = M H.do_cpr(src)