From 4338bef440844caa16410ecb466a786e08589db2 Mon Sep 17 00:00:00 2001 From: Milutinke Date: Mon, 24 Oct 2022 22:41:56 +0200 Subject: [PATCH] Fixed chat messages not being sent. --- MinecraftClient/ChatBots/WebSocketBot.cs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/MinecraftClient/ChatBots/WebSocketBot.cs b/MinecraftClient/ChatBots/WebSocketBot.cs index cef17043..6ef934c9 100644 --- a/MinecraftClient/ChatBots/WebSocketBot.cs +++ b/MinecraftClient/ChatBots/WebSocketBot.cs @@ -859,9 +859,10 @@ namespace MinecraftClient.ChatBots SendSessionEvent(session, "OnWsCommandResponse", "{\"success\": true, \"message\": \"Succesfully authenticated!\"}", true); LogToConsole(Translations.TryGet("bot.WebSocketBot.session_authenticated", session.GetSessionId())); session.SetAuthenticated(true); - return true; } } + + SendText(message); } return true;