Files
impostor/inc/decision/decision.go_to_home.lua
Tari Balázs 53ccda7702
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
- updated decision texts for less grammatical errors
- fixed for "only_left" game maxing out before special win
- game ends with TO BE CONTINUED at ASC 4
2026-03-22 21:42:13 +01:00

11 lines
234 B
Lua

Decision.register({
id = "go_to_home",
label = "Go Home",
condition = function()
return Context.have_been_to_office and Context.have_done_work_today
end,
handle = function()
Util.go_to_screen_by_id("home")
end,
})