New AutoDrop ChatBot (#1159)

* Add AutoDrop ChatBot
* Make AutoCraft config parse case insensitive
This commit is contained in:
ReinforceZwei 2020-07-31 03:06:36 +08:00 committed by GitHub
parent 432f55460d
commit 1b08e78463
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
5 changed files with 152 additions and 4 deletions

View file

@ -176,6 +176,7 @@ namespace MinecraftClient
if (Settings.AutoFishing_Enabled) { BotLoad(new ChatBots.AutoFishing()); }
if (Settings.AutoEat_Enabled) { BotLoad(new ChatBots.AutoEat(Settings.AutoEat_hungerThreshold)); }
if (Settings.AutoCraft_Enabled) { BotLoad(new AutoCraft(Settings.AutoCraft_configFile)); }
if (Settings.AutoDrop_Enabled) { BotLoad(new AutoDrop(Settings.AutoDrop_Mode, Settings.AutoDrop_items)); }
//Add your ChatBot here by uncommenting and adapting
//BotLoad(new ChatBots.YourBot());