diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm
index 56311a52df..56229e6cf3 100644
--- a/code/game/objects/items/devices/scanners.dm
+++ b/code/game/objects/items/devices/scanners.dm
@@ -52,8 +52,8 @@ REAGENT SCANNER
if (!istype(M,/mob/living/carbon/human) || M.isSynthetic())
//these sensors are designed for organic life
user.show_message("Analyzing Results for ERROR:\n\t Overall Status: ERROR")
- user.show_message(" Key: Suffocation/Toxin/Burns/Brute", 1)
- user.show_message(" Damage Specifics: ? - ? - ? - ?")
+ user.show_message(" Key: Suffocation/Toxin/Burns/Brute", 1)
+ user.show_message(" Damage Specifics: ? - ? - ? - ?")
user.show_message("Body Temperature: [M.bodytemperature-T0C]°C ([M.bodytemperature*1.8-459.67]°F)", 1)
user.show_message("Warning: Blood Level ERROR: --% --cl. Type: ERROR")
user.show_message("Subject's pulse: -- bpm.")
@@ -70,8 +70,8 @@ REAGENT SCANNER
user.show_message("Overall Status: dead")
else
user.show_message("Analyzing Results for [M]:\n\t Overall Status: [M.stat > 1 ? "dead" : "[round((M.health/M.maxHealth)*100) ]% healthy"]")
- user.show_message(" Key: Suffocation/Toxin/Burns/Brute", 1)
- user.show_message(" Damage Specifics: [OX] - [TX] - [BU] - [BR]")
+ user.show_message(" Key: Suffocation/Toxin/Burns/Brute", 1)
+ user.show_message(" Damage Specifics: [OX] - [TX] - [BU] - [BR]")
user.show_message("Body Temperature: [M.bodytemperature-T0C]°C ([M.bodytemperature*1.8-459.67]°F)", 1)
if(M.tod && (M.stat == DEAD || (M.status_flags & FAKEDEATH)))
user.show_message("Time of Death: [M.tod]")
@@ -92,7 +92,7 @@ REAGENT SCANNER
else
user.show_message(" Limbs are OK.",1)
- OX = M.getOxyLoss() > 50 ? "Severe oxygen deprivation detected" : "Subject bloodstream oxygen level normal"
+ OX = M.getOxyLoss() > 50 ? "Severe oxygen deprivation detected" : "Subject bloodstream oxygen level normal"
TX = M.getToxLoss() > 50 ? "Dangerous amount of toxins detected" : "Subject bloodstream toxin level minimal"
BU = M.getFireLoss() > 50 ? "Severe burn damage detected" : "Subject burn injury status O.K"
BR = M.getBruteLoss() > 50 ? "Severe anatomical damage detected" : "Subject brute-force injury status O.K"
diff --git a/html/changelogs/Anewbe - Oxyloss.yml b/html/changelogs/Anewbe - Oxyloss.yml
new file mode 100644
index 0000000000..4014cdeaae
--- /dev/null
+++ b/html/changelogs/Anewbe - Oxyloss.yml
@@ -0,0 +1,36 @@
+################################
+# Example Changelog File
+#
+# Note: This file, and files beginning with ".", and files that don't end in ".yml" will not be read. If you change this file, you will look really dumb.
+#
+# Your changelog will be merged with a master changelog. (New stuff added only, and only on the date entry for the day it was merged.)
+# When it is, any changes listed below will disappear.
+#
+# Valid Prefixes:
+# bugfix
+# wip (For works in progress)
+# tweak
+# soundadd
+# sounddel
+# rscadd (general adding of nice things)
+# rscdel (general deleting of nice things)
+# imageadd
+# imagedel
+# maptweak
+# spellcheck (typo fixes)
+# experiment
+#################################
+
+# Your name.
+author: N3X15
+
+# Optional: Remove this file after generating master changelog. Useful for PR changelogs that won't get used again.
+delete-after: True
+
+# Any changes you've made. See valid prefix list above.
+# INDENT WITH TWO SPACES. NOT TABS. SPACES.
+# SCREW THIS UP AND IT WON'T WORK.
+# Also, all entries are changed into a single [] after a master changelog generation. Just remove the brackets when you add new entries.
+# Please surround your changes in double quotes ("), as certain characters otherwise screws up compiling. The quotes will not show up in the changelog.
+changes:
+ - tweak: "Oxyloss now shows up as cyan in scanners."
diff --git a/nano/css/shared.css b/nano/css/shared.css
index dc6089716d..815171c0ef 100644
--- a/nano/css/shared.css
+++ b/nano/css/shared.css
@@ -663,7 +663,7 @@ th.misc {
}
.oxyloss {
- color: #4444FF;
+ color: cyan;
}
/* 75px width used in power monitoring console buttons */