From bec97ce7888f2f3bb94599b5abf138d960b4ae8f Mon Sep 17 00:00:00 2001 From: HelmCrab <90987989+Thera-Pissed@users.noreply.github.com> Date: Tue, 21 Jan 2025 09:12:21 -0600 Subject: [PATCH] fixes #4043 (extra space in bodypart info) (#4056) ## About The Pull Request fixes #4043 (weird space as shown) ![404732061-c679297e-b40d-4791-9417-573307458506](https://github.com/user-attachments/assets/628cb960-9ba7-4ef9-ae66-131e89b5c04b) ## Why It's Good For The Game ![image](https://github.com/user-attachments/assets/b59460cb-4525-4e23-a347-689a743fd04b) ![image](https://github.com/user-attachments/assets/a8166f41-5503-4b80-9147-f8d3d3598750) ## Changelog :cl: fix: extra space in disabled bodypart text. /:cl: --- code/modules/mob/living/carbon/human/human_defense.dm | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/code/modules/mob/living/carbon/human/human_defense.dm b/code/modules/mob/living/carbon/human/human_defense.dm index 4f3857841d7a..d16079014000 100644 --- a/code/modules/mob/living/carbon/human/human_defense.dm +++ b/code/modules/mob/living/carbon/human/human_defense.dm @@ -763,9 +763,9 @@ if(LB.bodypart_disabled) isdisabled = " is disabled" if(no_damage) - isdisabled += " but otherwise " + isdisabled += " but otherwise" else - isdisabled += " and " + isdisabled += " and" combined_msg += "\t Your [LB.name][isdisabled][self_aware ? " has " : " is "][status]." for(var/obj/item/I in LB.embedded_objects)