From dc74b9d488742e29a4b5a3d8d9693bd4934c0bd8 Mon Sep 17 00:00:00 2001 From: MoreRobustThanYou Date: Wed, 18 Oct 2017 11:18:03 -0400 Subject: [PATCH] Humans now use the generic sprite if they have 3 or less firestacks (#31820) To show that they're still on fire, but not AS on fire as you would be with 4+ firestacks --- code/modules/mob/living/carbon/human/update_icons.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index de0f733944..bc654f9201 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -63,7 +63,7 @@ There are several things that need to be remembered: ..() /mob/living/carbon/human/update_fire() - ..("Standing") + ..((fire_stacks > 3) ? "Standing" : "Generic_mob_burning") /* --------------------------------------- */