From 6d30d35d8186bd6556abd6ad35700b2b45f367b8 Mon Sep 17 00:00:00 2001 From: SkyratBot <59378654+SkyratBot@users.noreply.github.com> Date: Thu, 22 Feb 2024 16:36:54 +0100 Subject: [PATCH] [MIRROR] Removes a double space from health analyzer (#26601) * 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 dd873186ec2..8c90569bb91 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)