From 806151f4302c1c43fc81fd808d8dabe55949335b Mon Sep 17 00:00:00 2001 From: Iggy Date: Sun, 18 Aug 2024 22:29:50 -0300 Subject: [PATCH] Change start script to call the first chapter based on the "chapter_list_index" variable --- game/script.rpy | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/game/script.rpy b/game/script.rpy index c09df6d..1ef0a57 100644 --- a/game/script.rpy +++ b/game/script.rpy @@ -327,4 +327,4 @@ label start: pause 1.0 - $ renpy.call(general_chapters[0]) # Call first element of the general_chapters array + $ renpy.call(chapter_list[chapter_list_index]) # Call first element of the chapter_list array