From b3c9a20f16a87aacb76a9d3fd23fd3cd85df6fb5 Mon Sep 17 00:00:00 2001 From: ORelio Date: Tue, 13 Oct 2015 00:31:24 +0200 Subject: [PATCH] Fix AutoRespond not handling "other" message type Bug report by ibspa --- MinecraftClient/ChatBots/AutoRespond.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MinecraftClient/ChatBots/AutoRespond.cs b/MinecraftClient/ChatBots/AutoRespond.cs index 974ac8e6..bb14c5b1 100644 --- a/MinecraftClient/ChatBots/AutoRespond.cs +++ b/MinecraftClient/ChatBots/AutoRespond.cs @@ -203,6 +203,7 @@ namespace MinecraftClient.ChatBots msgType = MessageType.Public; else if (IsPrivateMessage(text, ref message, ref sender)) msgType = MessageType.Private; + else message = text; //Do not process messages sent by the bot itself if (msgType == MessageType.Other || sender != Settings.Username)