From 830a5f66f012a54c51e4bc3572ff0dac23fefc73 Mon Sep 17 00:00:00 2001 From: Arokha Sieyes Date: Sun, 11 Mar 2018 20:16:49 -0400 Subject: [PATCH] Fix two minor update_icons() oversights --- code/modules/mob/living/carbon/human/update_icons.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/update_icons.dm b/code/modules/mob/living/carbon/human/update_icons.dm index 3f8ac00745a..5c10ea509e0 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -90,7 +90,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() #define FIRE_LAYER 29 //'Mob on fire' overlay layer #define WATER_LAYER 30 //'Mob submerged' overlay layer #define TARGETED_LAYER 31 //'Aimed at' overlay layer -#define TOTAL_LAYERS 32//<---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list. +#define TOTAL_LAYERS 31//<---- KEEP THIS UPDATED, should always equal the highest number here, used to initialize a list. ////////////////////////////////// /mob/living/carbon/human @@ -111,7 +111,7 @@ var/global/list/damage_icon_parts = list() //see UpdateDamageIcon() update_icon_special() /mob/living/carbon/human/update_icons_layers() - crash_with("CANARY: Old human update_icons was called.") + crash_with("CANARY: Old human update_icons_layers was called.") /mob/living/carbon/human/update_icons_all() crash_with("CANARY: Old human update_icons_all was called.")