mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-02-24 10:38:56 +01:00
Provide a const-like variable for chapter_list so it can be reset as needed
This commit is contained in:
parent
f71b284e90
commit
6b93689456
1 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
# Store the general chapters inside an array for easy manipulation
|
||||
default chapter_list = [
|
||||
define base_chapter_list = [
|
||||
"chapter_1", "chapter_2", "chapter_3", "chapter_4", "chapter_5",
|
||||
"chapter_6", "chapter_7", "chapter_8", "chapter_9", "chapter_10", "chapter_11"
|
||||
]
|
||||
|
@ -11,6 +11,9 @@ define ending_routes = {
|
|||
1: ["chapter_11A", "chapter_12A", "chapter_12_5D", "chapter_13A", "chapter_14A"]
|
||||
}
|
||||
|
||||
# The working list the game references to determine the chapters to use. Ending chapters are added to this list when determined.
|
||||
default chapter_list = base_chapter_list
|
||||
|
||||
# Default vars reset when a new game starts, so no biggie.
|
||||
|
||||
# Anon/Fang
|
||||
|
|
Loading…
Reference in a new issue