From a4691f58e8e4d51908199135a226efc9aab85d6b Mon Sep 17 00:00:00 2001 From: Alex <37753918+Acplay5@users.noreply.github.com> Date: Mon, 2 Mar 2026 19:02:52 +0300 Subject: [PATCH] Only handle host options when there is no menu on screen (#140) --- Minecraft.Client/Windows64/Windows64_Minecraft.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp index 3268a02b..c2034b8c 100644 --- a/Minecraft.Client/Windows64/Windows64_Minecraft.cpp +++ b/Minecraft.Client/Windows64/Windows64_Minecraft.cpp @@ -1215,7 +1215,7 @@ int APIENTRY _tWinMain(_In_ HINSTANCE hInstance, } // TAB opens host options menu. - Vvis :3 - if (KMInput.IsKeyPressed(VK_TAB)) + if (KMInput.IsKeyPressed(VK_TAB) && !ui.GetMenuDisplayed(0)) { if (Minecraft* pMinecraft = Minecraft::GetInstance()) {