Files
impostor/inc/decision/decision.go_to_sleep.lua
Zoltan Timar 732c8b34c8
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
ci/woodpecker/pr/woodpecker Pipeline failed
feat: added standard day cycle, added mysterious man screen, added work screen, added new decisions, placed minigames in their proposed space
2026-03-09 16:20:50 +01:00

17 lines
385 B
Lua

Decision.register({
id = "go_to_sleep",
label = "Go to Sleep",
handle = function()
Meter.hide()
Day.increase()
MinigameRhythmWindow.start("game", {
focus_center_x = Config.screen.width / 2,
focus_center_y = Config.screen.height / 2,
focus_initial_radius = 0,
on_win = function()
MysteriousManWindow.start()
end,
})
end,
})