From 41bd34d666cb0ddef3b22454165cd82c652d61b9 Mon Sep 17 00:00:00 2001 From: wezzy Date: Thu, 30 Jan 2020 07:49:33 +0800 Subject: [PATCH] now you're fixed --- code/modules/mob/living/carbon/carbon.dm | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/modules/mob/living/carbon/carbon.dm b/code/modules/mob/living/carbon/carbon.dm index 4a47e47d649..d53727e5783 100644 --- a/code/modules/mob/living/carbon/carbon.dm +++ b/code/modules/mob/living/carbon/carbon.dm @@ -237,9 +237,9 @@ if(org.status & ORGAN_BLEEDING) status += span("danger", "bleeding") if(status.len) - src.show_message("My [org.name] is [english_list(status)].",1) + src.show_message("My [org.name] is [span("warning", "[english_list(status)].")]" ,1) else - src.show_message("My [org.name] is OK.",1) + src.show_message("My [org.name] is [span("notice", "OK.")]" ,1) if((isskeleton(H)) && (!H.w_uniform) && (!H.wear_suit)) H.play_xylophone() @@ -304,7 +304,7 @@ src.help_up_offer = 0 else M.visible_message(span("warning", "[M] grabs onto [src], trying to pull themselves up."), \ - span("warning", "You grab onto [src], trying to pull yourself up.")) + span("warning", "You grab onto [src], trying to pull yourself up.")) if(M.fire_stacks >= (src.fire_stacks + 3)) src.adjust_fire_stacks(1) M.adjust_fire_stacks(-1)