From a00db927035e4e5384c4f15e13f91d7599640963 Mon Sep 17 00:00:00 2001 From: Zsolt Tasnadi Date: Tue, 17 Mar 2026 21:53:47 +0100 Subject: [PATCH] main title typo fix, remove glitch and end_game decision --- inc/decision/decision.go_to_office.lua | 1 - inc/screen/screen.home.lua | 1 - inc/window/window.intro.title.lua | 10 +++++----- 3 files changed, 5 insertions(+), 7 deletions(-) diff --git a/inc/decision/decision.go_to_office.lua b/inc/decision/decision.go_to_office.lua index e6285f3..4cd3f2d 100644 --- a/inc/decision/decision.go_to_office.lua +++ b/inc/decision/decision.go_to_office.lua @@ -2,7 +2,6 @@ Decision.register({ id = "go_to_office", label = "Go to Office", handle = function() - Glitch.show() Util.go_to_screen_by_id("office") end, }) diff --git a/inc/screen/screen.home.lua b/inc/screen/screen.home.lua index 41321b6..b8de6e0 100644 --- a/inc/screen/screen.home.lua +++ b/inc/screen/screen.home.lua @@ -5,7 +5,6 @@ Screen.register({ "go_to_toilet", "go_to_walking_to_office", "go_to_sleep", - "go_to_end", }, background = "bedroom", draw = function() diff --git a/inc/window/window.intro.title.lua b/inc/window/window.intro.title.lua index 9d007e8..05b2ac5 100644 --- a/inc/window/window.intro.title.lua +++ b/inc/window/window.intro.title.lua @@ -13,11 +13,11 @@ TitleIntroWindow.text = [[ # # # # # # # # # # # ### # # # # # -### ### ### ### ### ### ### ### - # # # # # # # # # # # ### - # # # ### ### ### # # # # # - # # # # # # # # # # # -### # # # # ### # ### # # +### # # ### #### ### ### #### ### + # ## ## # # # # # # # # # # + # # # # ### # # ### # # # ### + # # # # # # # # # # # # +### # # # #### ### # #### # # ]] --- Draws the title intro window.