Files
impostor/inc/screen/screen.home.lua
Zsolt Tasnadi a00db92703
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
main title typo fix, remove glitch and end_game decision
2026-03-17 21:53:47 +01:00

16 lines
322 B
Lua

Screen.register({
id = "home",
name = "Home",
decisions = {
"go_to_toilet",
"go_to_walking_to_office",
"go_to_sleep",
},
background = "bedroom",
draw = function()
if Context.home_norman_visible and Window.get_current_id() == "game" then
Sprite.draw_at("norman", 100, 80)
end
end
})