Files
impostor/inc/decision/decision.go_to_walking_to_home.lua
Zoltan Timar 7b263bb454
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
fix: desition -> decision
2026-02-18 21:42:40 +01:00

9 lines
208 B
Lua

DecisionManager.register({
id = "go_to_walking_to_home",
label = "Walking to home",
handle = function()
Util.go_to_screen_by_id("walking_to_home")
end,
condition = function() return true end
})