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
This commit is contained in:
parent
1fd2fd8ac6
commit
6c42cee3f4
|
|
@ -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();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue