From 8358c005b982692a9f7324f72bd9115fafe2b9ed Mon Sep 17 00:00:00 2001 From: NovaBot <154629622+NovaBot13@users.noreply.github.com> Date: Thu, 22 Feb 2024 00:43:40 -0500 Subject: [PATCH] [MIRROR] Removes a double space from health analyzer (#1094) * Removes a double space from health analyzer (#81589) ## About The Pull Request Fixes the message saying someone is deaf having 2 spaces in it. ## Why It's Good For The Game minor typo. ## Changelog :cl: spellcheck: Removed a double space in health analyzer's message telling you someone is deaf. /:cl: --------- Co-authored-by: san7890 * Removes a double space from health analyzer --------- Co-authored-by: John Willard <53777086+JohnFulpWillard@users.noreply.github.com> Co-authored-by: san7890 --- code/game/objects/items/devices/scanners/health_analyzer.dm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/code/game/objects/items/devices/scanners/health_analyzer.dm b/code/game/objects/items/devices/scanners/health_analyzer.dm index 7d9f93e7e4b..8999f3fe2f4 100644 --- a/code/game/objects/items/devices/scanners/health_analyzer.dm +++ b/code/game/objects/items/devices/scanners/health_analyzer.dm @@ -229,7 +229,7 @@ if(ears.damage) render_list += "Subject has [ears.damage > ears.maxHealth ? "permanent ": "temporary "]hearing damage.\n" if(ears.deaf) - render_list += "Subject is [ears.damage > ears.maxHealth ? "permanently ": "temporarily "] deaf.\n" + render_list += "Subject is [ears.damage > ears.maxHealth ? "permanently": "temporarily"] deaf.\n" // Eye status var/obj/item/organ/internal/eyes/eyes = carbontarget.get_organ_slot(ORGAN_SLOT_EYES)