Files
impostor/inc/decision/decision.go_to_toilet.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
187 B
Lua

DecisionManager.register({
id = "go_to_toilet",
label = "Go to Toilet",
handle = function()
Util.go_to_screen_by_id("toilet")
end,
condition = function() return true end
})