Hi,
i am trying to add german umlauts: "öäüÖÄÜ".
I have seen a "solved" thread with the same issue.
https://umod.org/community/kill-feed/4164-special-characters-not-showing
But OP did not deliver how he solved this -.-
In KillFeed.json:
i am trying to add german umlauts: "öäüÖÄÜ".
I have seen a "solved" thread with the same issue.
https://umod.org/community/kill-feed/4164-special-characters-not-showing
But OP did not deliver how he solved this -.-
In KillFeed.json:
"3.7 Allowed Special Characters": [
".",
" ",
"[",
"]",
"(",
")",
"<",
">",
"ä",
"Ä",
"ü",
"Ü",
"ö",
"Ö",
"ß"
]
But this has no effect.
I even edited the KillFeed.cs plugin itself:
// initialize allowedCharacters and populate initial allowedCharacters population
allowedCharacters = new bool[65536];
for (char c = '0'; c <= '9'; c++) allowedCharacters[c] = true;
for (char c = 'A'; c <= 'Z'; c++) allowedCharacters[c] = true;
for (char c = 'a'; c <= 'z'; c++) allowedCharacters[c] = true;
allowedCharacters['ä'] = true;
allowedCharacters['Ä'] = true;
allowedCharacters['ü'] = true;
allowedCharacters['Ü'] = true;
allowedCharacters['ö'] = true;
allowedCharacters['Ö'] = true;
allowedCharacters['ß'] = true;
But it doesn't help :(