From 83a56cc74afb57970cea480efc43ac1a9621a5a8 Mon Sep 17 00:00:00 2001 From: Mervill Date: Mon, 29 Jul 2024 17:57:46 -0700 Subject: [PATCH] Objects that only have a basic description won't have extra line in examine text (#30472) objects that only have a basic description won't have extra line in examine text --- Content.Shared/Examine/ExamineSystemShared.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Content.Shared/Examine/ExamineSystemShared.cs b/Content.Shared/Examine/ExamineSystemShared.cs index 682018949a..f0406c5398 100644 --- a/Content.Shared/Examine/ExamineSystemShared.cs +++ b/Content.Shared/Examine/ExamineSystemShared.cs @@ -352,7 +352,7 @@ namespace Content.Shared.Examine var totalMessage = new FormattedMessage(Message); parts.Sort(Comparison); - if (_hasDescription) + if (_hasDescription && parts.Count > 0) { totalMessage.PushNewline(); } -- 2.52.0