mirror of
https://github.com/MCCTeam/Minecraft-Console-Client
synced 2025-10-14 21:22:49 +00:00
New AutoDrop ChatBot (#1159)
* Add AutoDrop ChatBot * Make AutoCraft config parse case insensitive
This commit is contained in:
parent
432f55460d
commit
1b08e78463
5 changed files with 152 additions and 4 deletions
|
|
@ -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());
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue