Skip to content

Commit

Permalink
[MIRROR] Removes a double space from health analyzer (#1094)
Browse files Browse the repository at this point in the history
* 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 <[email protected]>

* Removes a double space from health analyzer

---------

Co-authored-by: John Willard <[email protected]>
Co-authored-by: san7890 <[email protected]>
  • Loading branch information
3 people authored and StealsThePRs committed Feb 22, 2024
1 parent 796994b commit 8358c00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -229,7 +229,7 @@
if(ears.damage)
render_list += "<span class='alert ml-2'>Subject has [ears.damage > ears.maxHealth ? "permanent ": "temporary "]hearing damage.\n</span>"
if(ears.deaf)
render_list += "<span class='alert ml-2'>Subject is [ears.damage > ears.maxHealth ? "permanently ": "temporarily "] deaf.\n</span>"
render_list += "<span class='alert ml-2'>Subject is [ears.damage > ears.maxHealth ? "permanently": "temporarily"] deaf.\n</span>"

// Eye status
var/obj/item/organ/internal/eyes/eyes = carbontarget.get_organ_slot(ORGAN_SLOT_EYES)
Expand Down

0 comments on commit 8358c00

Please sign in to comment.