Files
impostor/inc/decision/decision.go_to_home.lua
2026-03-21 00:12:15 +01:00

11 lines
237 B
Lua

Decision.register({
id = "go_to_home",
label = "Go to 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,
})