From c554f70d8877403ceb8b9817ae04a74c3b72d1c4 Mon Sep 17 00:00:00 2001 From: mwerezak Date: Sat, 13 Dec 2014 17:54:30 -0500 Subject: [PATCH] Fixes colour mix up Somehow phoron got the colour meant for inaprovaline. --- code/modules/reagents/Chemistry-Reagents.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/reagents/Chemistry-Reagents.dm b/code/modules/reagents/Chemistry-Reagents.dm index 0ad32421fab..7393a255abe 100644 --- a/code/modules/reagents/Chemistry-Reagents.dm +++ b/code/modules/reagents/Chemistry-Reagents.dm @@ -380,7 +380,7 @@ datum id = "inaprovaline" description = "Inaprovaline is a synaptic stimulant and cardiostimulant. Commonly used to stabilize patients." reagent_state = LIQUID - color = "#C8A5DC" // rgb: 200, 165, 220 + color = "#00BFFF" // rgb: 200, 165, 220 overdose = REAGENTS_OVERDOSE*2 scannable = 1 @@ -1595,7 +1595,7 @@ datum id = "phoron" description = "Phoron in its liquid form." reagent_state = LIQUID - color = "#00BFFF" // rgb: 231, 27, 0 + color = "#E71B00" // rgb: 231, 27, 0 toxpwr = 3 on_mob_life(var/mob/living/M as mob)