Skip to content

Commit

Permalink
Fix admin chat messages
Browse files Browse the repository at this point in the history
  • Loading branch information
c4llv07e committed Oct 6, 2024
1 parent 82afcb9 commit 0d39a3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Content.Server/Chat/Managers/ChatManager.cs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ private void SendOOC(ICommonSession player, string message)
var data = _adminManager.GetAdminData(player);
if (data != null && data.Title != null)
{
wrappedMessage = Loc.GetString("chat-manager-send-ooc-admin-wrap-message", ("patronTitle", $"\\[{data.Title}\\] "),("playerName", player.Name), ("message", FormattedMessage.EscapeText(message)));
wrappedMessage = Loc.GetString("chat-manager-send-ooc-admin-wrap-message", ("dataTitle", $"\\[{data.Title}\\] "),("playerName", player.Name), ("message", FormattedMessage.EscapeText(message)));
}
// Alteros-end

Expand Down

0 comments on commit 0d39a3b

Please sign in to comment.