mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-02-24 10:38:56 +01:00
Remove unused globals
This commit is contained in:
parent
719f08ba24
commit
a787d1ceaf
1 changed files with 4 additions and 5 deletions
|
@ -24,7 +24,7 @@ define tuples_index = [
|
||||||
init python:
|
init python:
|
||||||
|
|
||||||
def select_chapter():
|
def select_chapter():
|
||||||
global current_chapter, is_end_reached, quick_menu
|
global current_chapter, quick_menu
|
||||||
|
|
||||||
selected_tuple = ()
|
selected_tuple = ()
|
||||||
|
|
||||||
|
@ -41,7 +41,7 @@ init python:
|
||||||
|
|
||||||
set_stats()
|
set_stats()
|
||||||
toggle_debug()
|
toggle_debug()
|
||||||
quick_menu = True
|
quick_menu = True # Restores the bottom quick menu UI
|
||||||
|
|
||||||
renpy.call(current_chapter)
|
renpy.call(current_chapter)
|
||||||
|
|
||||||
|
@ -51,7 +51,7 @@ init python:
|
||||||
|
|
||||||
|
|
||||||
def set_stats():
|
def set_stats():
|
||||||
global chapter_list_length, ending_route_number, is_end_reached
|
global ending_route_number, is_end_reached
|
||||||
|
|
||||||
ending_route_number = get_ending()
|
ending_route_number = get_ending()
|
||||||
|
|
||||||
|
@ -89,7 +89,7 @@ label reset_chapter_list:
|
||||||
|
|
||||||
|
|
||||||
label chapter_select:
|
label chapter_select:
|
||||||
$ quick_menu = False
|
$ quick_menu = False # Hides bottom quick menu UI
|
||||||
|
|
||||||
$ anon_points = 0
|
$ anon_points = 0
|
||||||
$ fang_points = 0
|
$ fang_points = 0
|
||||||
|
@ -126,5 +126,4 @@ label chapter_select:
|
||||||
|
|
||||||
$ select_chapter()
|
$ select_chapter()
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue