Files
impostor/inc/decision/decision.have_a_coffee.lua
Zsolt Tasnadi 62d4863a1a
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
ci/woodpecker/pr/woodpecker Pipeline was successful
ci/woodpecker/pull_request_closed/woodpecker Pipeline was successful
refact
2026-02-22 20:18:40 +01:00

9 lines
247 B
Lua

Decision.register({
id = "have_a_coffee",
label = "Have a Coffee",
handle = function()
local new_situation_id = Situation.apply("drink_coffee", Context.game.current_screen)
Context.game.current_situation = new_situation_id
end,
})