Skip to content

Commit

Permalink
localised GermanAccentSystem.cs
Browse files Browse the repository at this point in the history
  • Loading branch information
saga3152 committed Nov 19, 2024
1 parent 115437e commit cb43eec
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions Content.Server/Speech/EntitySystems/GermanAccentSystem.cs
Original file line number Diff line number Diff line change
Expand Up @@ -58,12 +58,12 @@ public string Accentuate(string message)
{
msgBuilder[i] = msgBuilder[i] switch
{
'A' => 'Ä',
'a' => 'ä',
'O' => 'Ö',
'o' => 'ö',
'U' => 'Ü',
'u' => 'ü',
'А' => 'Ä', // Hardcoded into Russian.
'а' => 'ä', // Hardcoded into Russian.
'О' => 'Ö', // Hardcoded into Russian.
'о' => 'ö', // Hardcoded into Russian.
'У' => 'Ü', // Hardcoded into Russian.
'у' => 'ü', // Hardcoded into Russian.
_ => msgBuilder[i]
};
umlautCooldown = 4;
Expand Down

0 comments on commit cb43eec

Please sign in to comment.