Fix: gui, block destroy

Feat: speed up on left mouse button in credits
This commit is contained in:
InviseDivine
2026-03-10 22:06:28 +02:00
parent 2d17f9d152
commit 04f13ab4a7
3 changed files with 15 additions and 3 deletions

View File

@@ -864,6 +864,10 @@ void Minecraft::tickInput() {
static bool prevMouseDownLeft = false;
if (Mouse::getButtonState(MouseAction::ACTION_LEFT) == 0) {
gameMode->stopDestroyBlock();
}
if (useTouchscreen()) {
// Touch: gesture recognizer classifies the action type (turn/destroy/build)
BuildActionIntention bai;