Skip to content
This repository was archived by the owner on May 13, 2025. It is now read-only.

Commit 62ad3b0

Browse files
committed
added debug systems
1 parent 28b4b47 commit 62ad3b0

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

VAIIYA terminal.py

Lines changed: 12 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -631,11 +631,21 @@ def VRRALSA_COMMAND_PANEL():
631631
print("V.R.C.L. ERROR; KEYWORD DOES NOT LINK TO RECORD OR LOG. CHECK SPELLING, CAPS, OR OTHER.")
632632
#END OF THE VRCL COMMAND SYSTEM
633633

634-
#BELOW IS THE DEBUG COMMANDLINE ENABLE, SET TO TRUE FOR IT TO WORK.
634+
#BELOW IS THE DEBUG COMMANDLINE ENABLE, SET TO TRUE FOR IT TO WORK. FALSE FOR RELEASE
635635
def DEBUG_ENABLE():
636636
return True
637637

638+
def DEBUG_STARTUP_DISABLE():
639+
return True
638640

641+
def STARTUP_DEBUG_CHECK():
642+
if DEBUG_STARTUP_DISABLE() == False:
643+
check_for_update_plz()
644+
startup_screen_ascii_roll()
645+
loading_bars_combined_startup()
646+
647+
if DEBUG_STARTUP_DISABLE() == True:
648+
pass
639649

640650

641651
def terminal_startup_combined():
@@ -653,9 +663,7 @@ def loading_bars_combined_startup():
653663

654664
# Main system loop
655665
def game_loop():
656-
check_for_update_plz()
657-
startup_screen_ascii_roll()
658-
loading_bars_combined_startup()
666+
STARTUP_DEBUG_CHECK()
659667
terminal_startup_combined()
660668

661669
while True:

0 commit comments

Comments
 (0)