Unstable 0.17.8.0
This commit is contained in:
@@ -14,7 +14,7 @@ namespace Barotrauma
|
||||
public override bool Loaded => left.Loaded || right.Loaded;
|
||||
public override void RetrieveValue()
|
||||
{
|
||||
cachedValue = left.Value + right.Value;
|
||||
cachedValue = (left.Value ?? string.Empty) + (right.Value ?? string.Empty);
|
||||
UpdateLanguage();
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2,7 +2,6 @@ using Barotrauma.Extensions;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.Immutable;
|
||||
using System.Linq;
|
||||
using System.Reflection;
|
||||
using System.Text;
|
||||
using System.Xml.Linq;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user