Client: Fix /n to \n replacement mapping in fun-strings, used by game_text

and titles.txt type text overlays.
This commit is contained in:
Marco Cawthorne 2022-12-22 17:29:05 -08:00
parent 142d69b66a
commit 4f37e31677
Signed by: eukara
GPG Key ID: CE2032F0A2882A22
1 changed files with 1 additions and 1 deletions

View File

@ -53,7 +53,7 @@ Titles_ParseFunString(string temp)
temp = strreplace("\\w", "^7", temp);
temp = strreplace("\\d", "^8", temp);
temp = strreplace("\\R", " ", temp);
temp = strreplace("/n", "\n", temp);
temp = strreplace("\\n", "\n", temp);
return temp;
}