Merge branch 'master' into rename-items

This commit is contained in:
Anon 2023-06-03 14:29:42 +00:00 committed by GitHub
commit f77d58402a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 1573 additions and 27 deletions

View file

@ -297,6 +297,7 @@ namespace MinecraftClient
if (Config.ChatBot.ScriptScheduler.Enabled) { BotLoad(new ScriptScheduler()); }
if (Config.ChatBot.TelegramBridge.Enabled) { BotLoad(new TelegramBridge()); }
if (Config.ChatBot.ItemsCollector.Enabled) { BotLoad(new ItemsCollector()); }
if (Config.ChatBot.WebSocketBot.Enabled) { BotLoad(new WebSocketBot()); }
//Add your ChatBot here by uncommenting and adapting
//BotLoad(new ChatBots.YourBot());
}