From 08fc5cc37d6eaa32b4c9a32c2da75a0a814598ab Mon Sep 17 00:00:00 2001 From: Wisemonster <87689371+Wisemonster@users.noreply.github.com> Date: Thu, 18 Jun 2026 11:13:21 -0400 Subject: [PATCH] Adds a heal flag check for hunger, removes healing hunger from legion cores. (#96544) --- code/modules/mob/living/living.dm | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/code/modules/mob/living/living.dm b/code/modules/mob/living/living.dm index 0b91518a009..cb665832ec4 100644 --- a/code/modules/mob/living/living.dm +++ b/code/modules/mob/living/living.dm @@ -973,10 +973,11 @@ if(heal_flags & HEAL_STAM) set_stamina_loss(0, updating_stamina = FALSE, forced = TRUE) - // I don't really care to keep this under a flag - set_nutrition(NUTRITION_LEVEL_FED + 50) - overeatduration = 0 - satiety = 0 + // Only aheals really do this right now, so this flag should be fine for the time being + if(heal_flags & HEAL_ADMIN) + set_nutrition(NUTRITION_LEVEL_FED + 50) + overeatduration = 0 + satiety = 0 // These should be tracked by status effects losebreath = 0