Files
impostor/inc/decision/decision.have_a_coffee.lua
Zsolt Tasnadi 83e2000198
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
refact
2026-02-22 18:15:24 +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,
})