From 6f0952e921d106217552055fcd1165baed82322f Mon Sep 17 00:00:00 2001 From: Heroman Date: Thu, 5 Sep 2019 05:35:12 +1000 Subject: [PATCH] Fixes SA_ICON_REST being a combination of living and dead too --- code/modules/mob/living/simple_mob/simple_mob_vr.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/modules/mob/living/simple_mob/simple_mob_vr.dm b/code/modules/mob/living/simple_mob/simple_mob_vr.dm index 24faf9cc2a7..e8295929a51 100644 --- a/code/modules/mob/living/simple_mob/simple_mob_vr.dm +++ b/code/modules/mob/living/simple_mob/simple_mob_vr.dm @@ -1,7 +1,7 @@ // Flags for specifying which states we have vore icon_states for. #define SA_ICON_LIVING 0x01 #define SA_ICON_DEAD 0x02 -#define SA_ICON_REST 0x03 +#define SA_ICON_REST 0x04 /mob/living/simple_mob var/temperature_range = 40 // How close will they get to environmental temperature before their body stops changing its heat