Implemented the Discord Bridge Chat Bot. TODO: Translate

This commit is contained in:
Milutinke 2022-10-21 02:29:47 +02:00
parent e006943535
commit ec27ec53d7
4 changed files with 228 additions and 1 deletions

View file

@ -264,6 +264,7 @@ namespace MinecraftClient
if (Config.ChatBot.AutoRelog.Enabled) { BotLoad(new AutoRelog()); }
if (Config.ChatBot.AutoRespond.Enabled) { BotLoad(new AutoRespond()); }
if (Config.ChatBot.ChatLog.Enabled) { BotLoad(new ChatLog()); }
if (Config.ChatBot.DiscordBridge.Enabled) { BotLoad(new DiscordBridge()); }
if (Config.ChatBot.Farmer.Enabled) { BotLoad(new Farmer()); }
if (Config.ChatBot.FollowPlayer.Enabled) { BotLoad(new FollowPlayer()); }
if (Config.ChatBot.HangmanGame.Enabled) { BotLoad(new HangmanGame()); }