diff --git a/ReallifeGamemode.Server/Services/ChatService.cs b/ReallifeGamemode.Server/Services/ChatService.cs index 19064ee8..7bf572a1 100644 --- a/ReallifeGamemode.Server/Services/ChatService.cs +++ b/ReallifeGamemode.Server/Services/ChatService.cs @@ -33,7 +33,7 @@ namespace ReallifeGamemode.Server.Services public static void SendMessage(Client player, string message) { if (player == null) return; - ChatService.SendMessage(player, message); + player.SendChatMessage(message); } ///