From 6a0bd7c9256dac3c1ce4644638980e1c97bf230e Mon Sep 17 00:00:00 2001 From: Ghommie <42542238+Ghommie@users.noreply.github.com> Date: Thu, 21 Nov 2019 07:40:49 +0100 Subject: [PATCH] THE REVENGE OF THE WHITESPACES --- code/modules/mob/living/carbon/human/examine.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/examine.dm b/code/modules/mob/living/carbon/human/examine.dm index 8432ffda2c..d5c2e5fc38 100644 --- a/code/modules/mob/living/carbon/human/examine.dm +++ b/code/modules/mob/living/carbon/human/examine.dm @@ -143,7 +143,7 @@ var/temp = getBruteLoss() //no need to calculate each of these twice - var/list/msg = list("") //Everything below gets this span + var/list/msg = list() var/list/missing = list(BODY_ZONE_HEAD, BODY_ZONE_CHEST, BODY_ZONE_L_ARM, BODY_ZONE_R_ARM, BODY_ZONE_L_LEG, BODY_ZONE_R_LEG) var/list/disabled = list() @@ -326,7 +326,7 @@ msg += "[t_He] [t_is] moving [t_his] body in an unnatural and blatantly inhuman manner.\n" - if (length(msg)) //End of default warning span + if (length(msg)) . += "[msg.Join("")]" var/trait_exam = common_trait_examine()