From 992e243eb7c70956bc9d5dfd9faa1ff4974dfdc3 Mon Sep 17 00:00:00 2001 From: DetectivEren <55319774+detectiveren@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:02:45 +0000 Subject: [PATCH] TAB key opens up game info instead of host options TAB key opens up game info menu instead of host options menu because the player accesses host options from game info --- Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 7d38ff99c..f5e5c9236 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -1235,13 +1235,14 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, ToggleFullscreen(); } - // TAB opens host options menu. - Vvis :3 + // TAB opens game info menu. - Vvis :3 - Updated by detectiveren if (KMInput.IsKeyPressed(VK_TAB) && !ui.GetMenuDisplayed(0)) { if (Minecraft* pMinecraft = Minecraft::GetInstance()) { { - ui.NavigateToScene(0, eUIScene_InGameHostOptionsMenu); + ui.NavigateToScene(0, eUIScene_InGameInfoMenu); + } } }