From 8809ad41d882400ad3ce7a9574cf1bc1fc606ca6 Mon Sep 17 00:00:00 2001 From: Milutinke Date: Sun, 25 Sep 2022 16:18:52 +0200 Subject: [PATCH] Accidentally removed initialization for FollowPlayer chat bot, fixed. --- MinecraftClient/McClient.cs | 1 + 1 file changed, 1 insertion(+) diff --git a/MinecraftClient/McClient.cs b/MinecraftClient/McClient.cs index 168a08f0..2b9e419d 100644 --- a/MinecraftClient/McClient.cs +++ b/MinecraftClient/McClient.cs @@ -287,6 +287,7 @@ namespace MinecraftClient if (Settings.AutoCraft_Enabled) { BotLoad(new AutoCraft(Settings.AutoCraft_configFile)); } if (Settings.AutoDrop_Enabled) { BotLoad(new AutoDrop(Settings.AutoDrop_Mode, Settings.AutoDrop_items)); } if (Settings.ReplayMod_Enabled && reload) { BotLoad(new ReplayCapture(Settings.ReplayMod_BackupInterval)); } + if (Settings.FollowPlayer_Enabled) { BotLoad(new FollowPlayer(Settings.FollowPlayer_UpdateLimit, Settings.FollowPlayer_UpdateLimit)); } //Add your ChatBot here by uncommenting and adapting //BotLoad(new ChatBots.YourBot());