refact by claude
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful

This commit is contained in:
Zsolt Tasnadi
2026-02-23 10:22:41 +01:00
parent 272a54ea87
commit 7deeffa8d6
20 changed files with 85 additions and 77 deletions

View File

@@ -5,12 +5,12 @@ function MinigameButtonMashWindow.init(params)
end
--- Starts the button mash minigame.
-- @param return_window number The window ID to return to after the minigame.
-- @param return_window string The window ID to return to after the minigame.
-- @param[opt] params table Optional parameters for minigame configuration.
function MinigameButtonMashWindow.start(return_window, params)
MinigameButtonMashWindow.init(params)
Context.minigame_button_mash.return_window = return_window or "game"
Context.current_window = "minigame_button_mash"
Window.set_current("minigame_button_mash")
end
--- Updates button mash minigame logic.
@@ -26,7 +26,7 @@ function MinigameButtonMashWindow.update()
if mg.bar_fill >= mg.max_fill then
Meter.on_minigame_complete()
Meter.show()
Context.current_window = mg.return_window
Window.set_current(mg.return_window)
return
end
local degradation = mg.base_degradation + (mg.bar_fill * mg.degradation_multiplier)