mirror of
https://github.com/space-wizards/RobustToolbox.git
synced 2026-02-15 03:30:53 +01:00
Merge pull request #3790 from juliangiebel/2023.1.28-rich-text
Fix FormattedMessage#IsEmpty
This commit is contained in:
@@ -24,7 +24,7 @@ public sealed partial class FormattedMessage
|
||||
/// <summary>
|
||||
/// true if the formatted message doesn't contain any nodes
|
||||
/// </summary>
|
||||
public bool IsEmpty => _nodes.Count > 0;
|
||||
public bool IsEmpty => _nodes.Count == 0;
|
||||
|
||||
private readonly List<MarkupNode> _nodes;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user