4 Commits
Author SHA1 Message Date
Iggy 4d3801dd3d fix commit 2024-08-30 20:35:22 -03:00
Iggy aee5d8b610 find_chapter_in_array now exits to the main menu in case of error 2024-08-30 20:31:52 -03:00
Iggy 4ce0d1df31 Merge branch 'add-ending-ch-select' 2024-08-30 20:16:08 -03:00
Iggy 7865a0164c Remove unused globals 2024-08-29 18:23:32 -03:00
2 changed files with 3 additions and 4 deletions
+2 -3
View File
@@ -109,9 +109,8 @@ init python:
try:
chapter_list_index = chapter_list.index(chapter)
except ValueError:
chapter_list_index = -1
chapter = ""
except ValueError: # This crashes the game otherwise since it wouldn't find the correct chapter
MainMenu(confirm=False) () # Exits to the main menu
label reset_chapter_list:
+1 -1
View File
@@ -315,4 +315,4 @@ label lending:
scene black with Dissolve(2)
pause 1
$ MainMenu(confirm=False)() # Exits to the main menu
$ MainMenu(confirm=False) () # Exits to the main menu