Skip to content

Commit

Permalink
Fix MessageTranslated (#2122)
Browse files Browse the repository at this point in the history
  • Loading branch information
BoltonDev committed Oct 1, 2023
1 parent b11da3a commit d7870fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Exiled.API/Extensions/MirrorExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -329,7 +329,7 @@ public static void MessageTranslated(this Player player, string words, string tr
string[] translations = translation.Split('\n');

for (int i = 0; i < cassies.Length; i++)
announcement.Append($"{translations[i]}<size=0> {cassies[i].Replace(' ', ' ')} </size><split>");
announcement.Append($"{translations[i].Replace(' ', ' ')}<size=0> {cassies[i]} </size><split>");

string message = StringBuilderPool.Pool.ToStringReturn(announcement);

Expand Down

0 comments on commit d7870fa

Please sign in to comment.