diff --git a/Content.Shared/Examine/ExamineSystemShared.cs b/Content.Shared/Examine/ExamineSystemShared.cs index 1e97e8f3405b..4372b7d51699 100644 --- a/Content.Shared/Examine/ExamineSystemShared.cs +++ b/Content.Shared/Examine/ExamineSystemShared.cs @@ -409,8 +409,10 @@ public ExamineGroupDisposable PushGroup(string groupName, int priority=0) private void PopGroup() { DebugTools.Assert(_currentGroupPart != null); - if (_currentGroupPart != null) + if (_currentGroupPart != null && !_currentGroupPart.Message.IsEmpty) + { Parts.Add(_currentGroupPart); + } _currentGroupPart = null; }