From ad8c1593f6502db2ab71f8ecacfd242fbb072aa1 Mon Sep 17 00:00:00 2001
From: Thalpy <33956696+Thalpy@users.noreply.github.com>
Date: Thu, 13 Jun 2019 01:47:29 +0100
Subject: [PATCH] Reduced medical jargon on scanners.
---
code/game/objects/items/devices/scanners.dm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/code/game/objects/items/devices/scanners.dm b/code/game/objects/items/devices/scanners.dm
index c733b2086b..fdb4bc2e40 100644
--- a/code/game/objects/items/devices/scanners.dm
+++ b/code/game/objects/items/devices/scanners.dm
@@ -139,13 +139,13 @@ SLIME SCANNER
to_chat(user, "Subject is suffering from liver failure: Apply Corazone and begin a liver transplant immediately!")
var/obj/item/organ/liver/L = M.getorganslot("liver")
if(L.swelling > 20)
- to_chat(user, "Subject is suffering from hyperhepatia.") //i.e. shrink their liver or give them a transplant.
+ to_chat(user, "Subject is suffering from an enlarged liver.") //i.e. shrink their liver or give them a transplant.
var/obj/item/organ/tongue/T = M.getorganslot("tongue")
if(!T || T.damage > 40)
- to_chat(user, "Subject is suffering from caustic burns on their tongue./span>") //i.e. their tongue is shot
+ to_chat(user, "Subject is suffering from necrotic tissue on their tongue./span>") //i.e. their tongue is shot
var/obj/item/organ/lungs/Lung = M.getorganslot("lungs")
if(Lung.damage > 150)
- to_chat(user, "Subject is suffering from an acute inhalation injury.") //i.e. Their lungs are shot
+ to_chat(user, "Subject is suffering from acute emphysema leading to trouble breathing.") //i.e. Their lungs are shot
var/msg = "*---------*\nAnalyzing results for [M]:\n\tOverall status: [mob_status]\n"