diff --git a/src/main/java/meteordevelopment/meteorclient/systems/modules/player/AutoEat.java b/src/main/java/meteordevelopment/meteorclient/systems/modules/player/AutoEat.java index 307854c048..445fd5b24f 100644 --- a/src/main/java/meteordevelopment/meteorclient/systems/modules/player/AutoEat.java +++ b/src/main/java/meteordevelopment/meteorclient/systems/modules/player/AutoEat.java @@ -117,6 +117,8 @@ private void onTick(TickEvent.Pre event) { // Skip if Auto Gap is already eating if (Modules.get().get(AutoGap.class).isEating()) return; + if (mc.options.useKey.isPressed()) return; + if (eating) { // If we are eating check if we should still be still eating if (shouldEat()) { @@ -188,6 +190,7 @@ private void startEating() { private void eat() { changeSlot(slot); setPressed(true); + if(eating == false) setPressed(false); if (!mc.player.isUsingItem()) Utils.rightClick(); eating = true;