[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>
This commit is contained in:
SkyratBot
2020-09-18 10:53:12 +02:00
committed by GitHub
co-authored by infoman-cor
parent e3ba8e7530
commit 98e6816d62
@@ -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, "<span class='notice'>You examine yourself.</span>")
M.examinate(src)
return
if(health < 0 && ishuman(M))
var/mob/living/carbon/human/H = M
H.do_cpr(src)