From 529033dc13715665eb0998458a96c7ba22c32880 Mon Sep 17 00:00:00 2001 From: UniversePM Date: Wed, 26 Aug 2026 19:35:18 -0500 Subject: [PATCH] fix: neoapps HURRY IT UP WITH CLANG SUPPORT --- Minecraft.Client/Input.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Input.cpp b/Minecraft.Client/Input.cpp index 2c8411c6..66086406 100644 --- a/Minecraft.Client/Input.cpp +++ b/Minecraft.Client/Input.cpp @@ -180,7 +180,7 @@ void Input::tick(LocalPlayer *player) #ifdef _WINDOWS64 kbJump = (iPad == 0) && g_KBMInput.IsMouseGrabbed() && g_KBMInput.IsKBMActive() && g_KBMInput.IsKeyDown(KeyboardMouseInput::KEY_JUMP); #endif - jumping = (jump > 0 || kbJump) && pMinecraft->localgameModes[iPad]->isInputAllowed(MINECRAFT_ACTION_JUMP) + jumping = (jump > 0 || kbJump) && pMinecraft->localgameModes[iPad]->isInputAllowed(MINECRAFT_ACTION_JUMP); #ifndef _CONTENT_PACKAGE if (app.GetFreezePlayers()) jumping = false;