From ab8393cba6a0654448e7842573e7c61dea1e60c6 Mon Sep 17 00:00:00 2001 From: Adem Kurt <138557116+Adem-Kurt@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:20:49 +0300 Subject: [PATCH 1/4] Fix: The buttons in the Help and Options menu do not make a clicking sound --- Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp b/Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp index ab79b94001..e35aafe1c9 100644 --- a/Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_HelpAndOptionsMenu.cpp @@ -207,6 +207,8 @@ void UIScene_HelpAndOptionsMenu::handleInput(int iPad, int key, bool repeat, boo void UIScene_HelpAndOptionsMenu::handlePress(F64 controlId, F64 childId) { + ui.PlayUISFX(eSFX_Press); + switch(static_cast(controlId)) { case BUTTON_HAO_CHANGESKIN: From b9c55c271e104fc35fb05a7a19d4fc41f9bde60d Mon Sep 17 00:00:00 2001 From: Adem Kurt <138557116+Adem-Kurt@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:42:34 +0300 Subject: [PATCH 2/4] Fix: The buttons in the Debug menu do not make a clicking sound --- Minecraft.Client/Common/UI/UIScene_DebugOverlay.cpp | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Minecraft.Client/Common/UI/UIScene_DebugOverlay.cpp b/Minecraft.Client/Common/UI/UIScene_DebugOverlay.cpp index c997fb3117..550757e374 100644 --- a/Minecraft.Client/Common/UI/UIScene_DebugOverlay.cpp +++ b/Minecraft.Client/Common/UI/UIScene_DebugOverlay.cpp @@ -183,6 +183,8 @@ void UIScene_DebugOverlay::handleInput(int iPad, int key, bool repeat, bool pres void UIScene_DebugOverlay::handlePress(F64 controlId, F64 childId) { + ui.PlayUISFX(eSFX_Press); + switch(static_cast(controlId)) { case eControl_Items: From 558f4a79be9c0dbd022f972e2572427a2497ac15 Mon Sep 17 00:00:00 2001 From: Adem Kurt <138557116+Adem-Kurt@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:43:49 +0300 Subject: [PATCH 3/4] Fix: The buttons in the Death menu do not make a clicking sound --- Minecraft.Client/Common/UI/UIScene_DeathMenu.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Minecraft.Client/Common/UI/UIScene_DeathMenu.cpp b/Minecraft.Client/Common/UI/UIScene_DeathMenu.cpp index a4dbe8a82b..faaa3aeee0 100644 --- a/Minecraft.Client/Common/UI/UIScene_DeathMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_DeathMenu.cpp @@ -81,6 +81,8 @@ void UIScene_DeathMenu::handleInput(int iPad, int key, bool repeat, bool pressed void UIScene_DeathMenu::handlePress(F64 controlId, F64 childId) { + ui.PlayUISFX(eSFX_Press); + switch(static_cast(controlId)) { case eControl_Respawn: @@ -188,4 +190,4 @@ void UIScene_DeathMenu::handlePress(F64 controlId, F64 childId) } break; } -} \ No newline at end of file +} From 26505c7661e866d22e9061572b3a47d73ea94041 Mon Sep 17 00:00:00 2001 From: Adem Kurt <138557116+Adem-Kurt@users.noreply.github.com> Date: Thu, 19 Mar 2026 15:48:12 +0300 Subject: [PATCH 4/4] Fix: The buttons in the Pause menu do not make a clicking sound --- Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp b/Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp index 7cec38b3c8..7f6f95c639 100644 --- a/Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp +++ b/Minecraft.Client/Common/UI/UIScene_PauseMenu.cpp @@ -504,6 +504,8 @@ void UIScene_PauseMenu::handleInput(int iPad, int key, bool repeat, bool pressed void UIScene_PauseMenu::handlePress(F64 controlId, F64 childId) { + ui.PlayUISFX(eSFX_Press); + if(m_bIgnoreInput) return; switch(static_cast(controlId)) @@ -1478,4 +1480,4 @@ bool UIScene_PauseMenu::CheckForPatch() return bPatchAvailable; } -#endif \ No newline at end of file +#endif