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