From 8495baf83ef2cd3b00cda91d5c3ff0f86a9b859b Mon Sep 17 00:00:00 2001 From: itsRevela Date: Tue, 28 Apr 2026 17:12:50 -0500 Subject: [PATCH] fix: remove 30-second sprint auto-stop --- Minecraft.Client/LocalPlayer.cpp | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/Minecraft.Client/LocalPlayer.cpp b/Minecraft.Client/LocalPlayer.cpp index f1e5a17b..4e9ffd35 100644 --- a/Minecraft.Client/LocalPlayer.cpp +++ b/Minecraft.Client/LocalPlayer.cpp @@ -164,14 +164,7 @@ bool LocalPlayer::isEffectiveAi() void LocalPlayer::aiStep() { - if (sprintTime > 0) - { - sprintTime--; - if (sprintTime == 0) - { - setSprinting(false); - } - } + if (sprintTime > 0) sprintTime--; if (sprintTriggerTime > 0) sprintTriggerTime--; if (minecraft->gameMode->isCutScene()) {