Remove QQbot scripts for fml3 pull request

This commit is contained in:
oldkingOK 2024-01-14 10:48:45 +08:00
parent 8eee50044f
commit a8643d85fc
5 changed files with 0 additions and 278 deletions

View file

@ -7,7 +7,6 @@ using System.Threading;
using Brigadier.NET;
using Brigadier.NET.Exceptions;
using MinecraftClient.ChatBots;
using MinecraftClient.OkBots;
using MinecraftClient.CommandHandler;
using MinecraftClient.CommandHandler.Patch;
using MinecraftClient.Commands;
@ -299,7 +298,6 @@ namespace MinecraftClient
if (Config.ChatBot.TelegramBridge.Enabled) { BotLoad(new TelegramBridge()); }
if (Config.ChatBot.ItemsCollector.Enabled) { BotLoad(new ItemsCollector()); }
if (Config.ChatBot.WebSocketBot.Enabled) { BotLoad(new WebSocketBot()); }
if (Config.ChatBot.OkWsBot.Enabled) { BotLoad(new OkWsBot()); }
//Add your ChatBot here by uncommenting and adapting
//BotLoad(new ChatBots.YourBot());
}