diff --git a/MinecraftClient/ChatBots/RemoteControl.cs b/MinecraftClient/ChatBots/RemoteControl.cs index dfdf5d2a35..187f8df043 100644 --- a/MinecraftClient/ChatBots/RemoteControl.cs +++ b/MinecraftClient/ChatBots/RemoteControl.cs @@ -18,7 +18,11 @@ public override void GetText(string text) if (isPrivateMessage(text, ref command, ref sender) && Settings.Bots_Owners.Contains(sender.ToLower().Trim())) { string response = ""; - performInternalCommand(command, ref response); + if(command.StartsWith(Settings.internalCmdChar.ToString())) + performInternalCommand(command.Substring(1), ref response); + else + SendText(command); + if (response.Length > 0) { SendPrivateMessage(sender, response);