From afc46b0b9d4fa7ab4ddd623225794da047d98f52 Mon Sep 17 00:00:00 2001 From: HugoLuman Date: Tue, 12 Apr 2016 20:03:00 -0700 Subject: [PATCH] No more color macros, clean compile Signed-off-by: HugoLuman --- code/modules/mob/living/carbon/human/species/drask.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/species/drask.dm b/code/modules/mob/living/carbon/human/species/drask.dm index 72acc9ebc18..2bad7230f70 100644 --- a/code/modules/mob/living/carbon/human/species/drask.dm +++ b/code/modules/mob/living/carbon/human/species/drask.dm @@ -61,10 +61,10 @@ if(H.status_flags & GODMODE) return 1 //godmode if(breath.temperature < 260) if(prob(20)) - H.to_chat(" You feel an invigorating coldness in your lungs!") + to_chat(H, " You feel an invigorating coldness in your lungs!") else if(breath.temperature > heat_level_1) if(prob(20)) - H.to_chat("You feel your face burning and a searing heat in your lungs!") + to_chat(H, "You feel your face burning and a searing heat in your lungs!") switch(breath.temperature) if(-INFINITY to 120)