diff --git a/Assets/Scripts/Game/Questing/Place.cs b/Assets/Scripts/Game/Questing/Place.cs index e41534b0cd..bff2c4b792 100644 --- a/Assets/Scripts/Game/Questing/Place.cs +++ b/Assets/Scripts/Game/Questing/Place.cs @@ -273,7 +273,9 @@ public override bool ExpandMacro(MacroTypes macro, out string textOut) // Workaround for older saves where regionIndex was not present and will always be 0 in save data (Alik'r Desert) // This can result in improper region name being displayed when loading an older save and quest not actually set in Alik'r Desert. // In these cases display name using the legacy regionName field stored in place data - textOut = siteDetails.regionName; + var index = + DaggerfallUnity.Instance.ContentReader.MapFileReader.GetRegionIndex(siteDetails.regionName); + textOut = TextManager.Instance.GetLocalizedRegionName(index); } else {