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 ..()