diff --git a/MinecraftClient/ChatBots/AutoEat.cs b/MinecraftClient/ChatBots/AutoEat.cs index 7597ab90..0a32d7ac 100644 --- a/MinecraftClient/ChatBots/AutoEat.cs +++ b/MinecraftClient/ChatBots/AutoEat.cs @@ -83,7 +83,7 @@ namespace MinecraftClient.ChatBots } } } - if (found) UseItemOnHand(); + if (found) UseItemInHand(); return found; } } diff --git a/MinecraftClient/ChatBots/AutoFishing.cs b/MinecraftClient/ChatBots/AutoFishing.cs index 92d22165..dc2d7432 100644 --- a/MinecraftClient/ChatBots/AutoFishing.cs +++ b/MinecraftClient/ChatBots/AutoFishing.cs @@ -95,7 +95,7 @@ namespace MinecraftClient.ChatBots { LogToConsole(GetTimestamp() + ": Caught a fish!"); // retract fishing rod - UseItemOnHand(); + UseItemInHand(); if (inventoryEnabled) { if (!hasFishingRod()) @@ -110,7 +110,7 @@ namespace MinecraftClient.ChatBots // retract fishing rod need some time Thread.Sleep(800); // throw again - UseItemOnHand(); + UseItemInHand(); }); }