From 1eddd1fea9f9bb6ea9eb47985cb4deda39d674a4 Mon Sep 17 00:00:00 2001 From: GinjaNinja32 Date: Mon, 15 Dec 2014 05:36:35 +0000 Subject: [PATCH] Span classes --- code/modules/clothing/masks/voice.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/clothing/masks/voice.dm b/code/modules/clothing/masks/voice.dm index 39669f44c0..c30e1ea48b 100644 --- a/code/modules/clothing/masks/voice.dm +++ b/code/modules/clothing/masks/voice.dm @@ -15,7 +15,7 @@ set src in usr changer.active = !changer.active - usr << "\blue You [changer.active ? "enable" : "disable"] the voice-changing module in \the [src]." + usr << "You [changer.active ? "enable" : "disable"] the voice-changing module in \the [src]." /obj/item/clothing/mask/gas/voice/verb/Set_Voice(name as text) set category = "Object" @@ -24,7 +24,7 @@ var/voice = sanitize(copytext(name,1,MAX_MESSAGE_LEN)) if(!voice || !length(voice)) return changer.voice = voice - usr << "\blue You are now mimicking [changer.voice]." + usr << "You are now mimicking [changer.voice]." /obj/item/clothing/mask/gas/voice/New() ..()