mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
Fix AutoRespond not handling "other" message type
Bug report by ibspa
This commit is contained in:
parent
8f6b59eaa0
commit
b3c9a20f16
1 changed files with 1 additions and 0 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue