From 06883912e4cbf09ef85fe4dedcb4a013f8c9be33 Mon Sep 17 00:00:00 2001 From: Zuhayr Date: Sat, 17 May 2014 13:37:32 +0930 Subject: [PATCH] Commented out some debug lines. --- 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 2e3d49d213..ef891a2204 100644 --- a/code/modules/mob/living/carbon/human/update_icons.dm +++ b/code/modules/mob/living/carbon/human/update_icons.dm @@ -263,7 +263,7 @@ proc/get_damage_icon_part(damage_state, body_part) //Icon is cached, use existing icon. base_icon = human_icon_cache[icon_key] - log_debug("Retrieved cached mob icon ([icon_key] \icon[human_icon_cache[icon_key]]) for [src].") + //log_debug("Retrieved cached mob icon ([icon_key] \icon[human_icon_cache[icon_key]]) for [src].") else @@ -346,7 +346,7 @@ proc/get_damage_icon_part(damage_state, body_part) human_icon_cache[icon_key] = base_icon - log_debug("Generated new cached mob icon ([icon_key] \icon[human_icon_cache[icon_key]]) for [src]. [human_icon_cache.len] cached mob icons.") + //log_debug("Generated new cached mob icon ([icon_key] \icon[human_icon_cache[icon_key]]) for [src]. [human_icon_cache.len] cached mob icons.") //END CACHED ICON GENERATION.