From 6e45386b95d8693d4c8530f7ad5a6729880a02e9 Mon Sep 17 00:00:00 2001 From: red <80164245+gabriel-fondato@users.noreply.github.com> Date: Mon, 2 Mar 2026 11:42:11 -0300 Subject: [PATCH] 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 --- Minecraft.Client/Common/Tutorial/ControllerTask.cpp | 4 ++-- Minecraft.Client/Common/Tutorial/InfoTask.cpp | 3 ++- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Minecraft.Client/Common/Tutorial/ControllerTask.cpp b/Minecraft.Client/Common/Tutorial/ControllerTask.cpp index c5fe071bf..d1604dba0 100644 --- a/Minecraft.Client/Common/Tutorial/ControllerTask.cpp +++ b/Minecraft.Client/Common/Tutorial/ControllerTask.cpp @@ -66,7 +66,7 @@ bool ControllerTask::isCompleted() } else { - bAllComplete = false; + bAllComplete = true; } } iCurrent++; @@ -87,7 +87,7 @@ bool ControllerTask::isCompleted() } else { - bAllComplete = false; + bAllComplete = true; } } iCurrent++; diff --git a/Minecraft.Client/Common/Tutorial/InfoTask.cpp b/Minecraft.Client/Common/Tutorial/InfoTask.cpp index 5330841fa..0657770fd 100644 --- a/Minecraft.Client/Common/Tutorial/InfoTask.cpp +++ b/Minecraft.Client/Common/Tutorial/InfoTask.cpp @@ -7,6 +7,7 @@ #include "TutorialConstraints.h" #include "InfoTask.h" #include "..\..\..\Minecraft.World\Material.h" +#include "..\..\KeyboardMouseInput.h" InfoTask::InfoTask(Tutorial *tutorial, int descriptionId, int promptId /*= -1*/, bool requiresUserInput /*= false*/, int iMapping /*= 0*/, ETelemetryChallenges telemetryEvent /*= eTelemetryTutorial_NoEvent*/) @@ -65,7 +66,7 @@ bool InfoTask::isCompleted() bool current = (*it).second; if(!current) { - if( InputManager.GetValue(pMinecraft->player->GetXboxPad(), (*it).first) > 0 ) + if( InputManager.GetValue(pMinecraft->player->GetXboxPad(), (*it).first) > 0 || KMInput.IsKeyDown(VK_SPACE)) { (*it).second = true; bAllComplete=true;