Replace @ with new lines in legacy map briefing sections

This commit is contained in:
Matthias
2017-12-12 18:42:26 +01:00
committed by abcdefg30
parent a3b186ccbc
commit 7b6b79493c

View File

@@ -133,7 +133,10 @@ namespace OpenRA.Mods.Common.UtilityCommands
var briefing = new StringBuilder();
foreach (var s in briefingSection)
briefing.AppendLine(s.Value);
{
var line = s.Value.Replace("@", "\n");
briefing.AppendLine(line);
}
if (briefing.Length == 0)
return;