From b6ff4dd248f86d58724d567e60c290ebdad9fd81 Mon Sep 17 00:00:00 2001 From: Aronai Sieyes Date: Tue, 27 Jul 2021 11:41:37 -0400 Subject: [PATCH] Merge pull request #11270 from Very-Soft/simplemobmedicalscans You can use health analyzers on simplemobs now --- code/modules/vore/eating/simple_animal_vr.dm | 3 +++ 1 file changed, 3 insertions(+) diff --git a/code/modules/vore/eating/simple_animal_vr.dm b/code/modules/vore/eating/simple_animal_vr.dm index 690afa28b6..1fd178038d 100644 --- a/code/modules/vore/eating/simple_animal_vr.dm +++ b/code/modules/vore/eating/simple_animal_vr.dm @@ -109,6 +109,9 @@ if(!(L in prey_excludes)) // Unless they're already on it, just to avoid fuckery. prey_excludes += L addtimer(CALLBACK(src, .proc/removeMobFromPreyExcludes, weakref(L)), 5 MINUTES) + else if(istype(O, /obj/item/device/healthanalyzer)) + var/healthpercent = health/maxHealth*100 + to_chat(user, "[src] seems to be [healthpercent]% healthy.") else ..()