From 2145ada7ce5c1bfb8e336d7d3fd90b84af626203 Mon Sep 17 00:00:00 2001 From: red <80164245+gabriel-fondato@users.noreply.github.com> Date: Mon, 2 Mar 2026 12:47:45 -0300 Subject: now able to press SPACE to continue on hints that wait for you to press A (#135) * now possible to accept and decline tutorial hints that part when it asks if you want to do the tutorial (should work for when the games asks if you already know something like when opening inventories for the first time) * Update ChoiceTask.cpp * now able to press SPACE to continue on hints that wait for you to press A and the hints what wait for you to move the gamepad stick now just skip instantly * windows specific patch now * added ifdefs to shit i did * i think it is fixed now --------- Co-authored-by: daoge <3523206925@qq.com> --- Minecraft.Client/Common/Tutorial/ControllerTask.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'Minecraft.Client/Common/Tutorial/ControllerTask.cpp') diff --git a/Minecraft.Client/Common/Tutorial/ControllerTask.cpp b/Minecraft.Client/Common/Tutorial/ControllerTask.cpp index c5fe071b..c3a42120 100644 --- a/Minecraft.Client/Common/Tutorial/ControllerTask.cpp +++ b/Minecraft.Client/Common/Tutorial/ControllerTask.cpp @@ -66,7 +66,11 @@ bool ControllerTask::isCompleted() } else { +#ifdef _WINDOWS64 + bAllComplete = true; +#else bAllComplete = false; +#endif } } iCurrent++; @@ -87,7 +91,11 @@ bool ControllerTask::isCompleted() } else { +#ifdef _WINDOWS64 + bAllComplete = true; +#else bAllComplete = false; +#endif } } iCurrent++; -- cgit v1.2.3