From e616e6af1f1e113af37f137e54c90ebda9397b1f Mon Sep 17 00:00:00 2001 From: hydrant Date: Sun, 26 May 2019 17:42:06 +0200 Subject: [PATCH] fixed error --- ReallifeGamemode.Server/Services/ChatService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } ///