diff --git a/Source/Game/Globals/ObjectManager.cs b/Source/Game/Globals/ObjectManager.cs index 3097eb05d..d7b1500f3 100644 --- a/Source/Game/Globals/ObjectManager.cs +++ b/Source/Game/Globals/ObjectManager.cs @@ -156,8 +156,10 @@ namespace Game } public static void AddLocaleString(string value, Locale locale, StringArray data) { - if (!string.IsNullOrEmpty(value)) - data[(int)locale] = value; + if (value == null) + value = ""; + + data[(int)locale] = value; } public static void GetLocaleString(StringArray data, Locale locale, ref string value) {