From c4a0e954d43e01630d593f1b6bc33e43e708a9cb 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 0e8b9f4de4c..0e068ae3177 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") /* --------------------------------------- */