From af4825cf84bb367ddf8d5b1621c833fa69e6c61e Mon Sep 17 00:00:00 2001 From: Casey Date: Thu, 2 Dec 2021 14:38:15 -0500 Subject: [PATCH 1/2] Merge pull request #11917 from Verkister/patch-101 Fixes simplemobs appearing misleadingly starved --- code/modules/mob/living/simple_mob/life.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_mob/life.dm b/code/modules/mob/living/simple_mob/life.dm index 254a4f0fc5..652d7ce08e 100644 --- a/code/modules/mob/living/simple_mob/life.dm +++ b/code/modules/mob/living/simple_mob/life.dm @@ -54,7 +54,7 @@ healths.icon_state = "health7" //Updates the nutrition while we're here - var/food_per = (nutrition / max_nutrition) * 100 + var/food_per = (nutrition / 500) * 100 //VOREStation Edit: Bandaid hardcode number to avoid misleading percentage based hunger alerts with our 6k cap. switch(food_per) if(90 to INFINITY) clear_alert("nutrition")