From f731a684229562cf42fb025c9688c3fcd8f4c47d Mon Sep 17 00:00:00 2001 From: DetectivEren <55319774+detectiveren@users.noreply.github.com> Date: Mon, 2 Mar 2026 23:23:59 +0000 Subject: [PATCH] TAB key opens up game info instead of host options (#204) * 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 * Update README.md --- Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 5 +++-- README.md | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 743da44b..95c10a2b 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -1321,13 +1321,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); + } } } diff --git a/README.md b/README.md index b24ef159..69038ef7 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,7 @@ This project contains the source code of Minecraft Legacy Console Edition v1.6.0 - **Use / Place**: `Right Click` - **Select Item**: `Mouse Wheel` or keys `1` to `9` - **Accept or Decline Tutorial hints**: `Enter` to accept and `B` to decline -- **Host Options**: `TAB` +- **Game Info (Player list and Host Options)**: `TAB` - **Toggle Debug Info**: `F3` - **Open Debug Overlay**: `F4`