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

Commit dba8771

Browse files
committed
fix frost debug bug
1 parent 65dfc10 commit dba8771

File tree

1 file changed

+8
-13
lines changed

1 file changed

+8
-13
lines changed

VAIIYA terminal.py

Lines changed: 8 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -291,8 +291,8 @@ def open_terminal():
291291

292292

293293
#BELOW IS THE DEBUG COMMANDLINE, DO NOT LEAVE ON FOR RELEASE!
294-
#elif text == 'DEBUG':
295-
DEBUG_CMD()
294+
elif text == 'DEBUG':
295+
DEBUG_COMMANDLINE()
296296

297297

298298
#the COMMANDS directory, DO NOT REMOVE!
@@ -329,7 +329,7 @@ def open_terminal():
329329
# PLEASE PUT ALL 2ND DEF(S) BELOW THIS NOTE!
330330

331331
#MAKE SURE THIS IS DISABLED BEFORE RELEASE!!!
332-
def DEBUG_CMD():
332+
def DEBUG_COMMANDLINE():
333333

334334
while True:
335335
text = prompt('DEBUG COMMANDLINE >>> ')
@@ -460,9 +460,6 @@ def walker_entered():
460460

461461
# FROST EE STUFF OVER HERE!
462462
def frostbyte_login():
463-
464-
#there is a bug that causes the `no command` string to print when exiting.
465-
print("to exit, type EXIT in the password!")
466463
userpassword = text = input_dialog(
467464
title='frostbyte password input',
468465
text='frostbyte password:').run()
@@ -473,8 +470,6 @@ def frostbyte_login():
473470
result = bcrypt.checkpw(userpassword, frosthash)
474471
if result:
475472
frostbyte_entered()
476-
if text == 'exit':
477-
return
478473

479474

480475

@@ -636,11 +631,11 @@ def VRRALSA_COMMAND_PANEL():
636631

637632
# Main system loop
638633
def game_loop():
639-
check_for_update_plz()
640-
startup_screen_ascii_roll()
641-
loading_bars_intro_1()
642-
loading_bars_intro_2()
643-
loading_bars_intro_3()
634+
#check_for_update_plz()
635+
#startup_screen_ascii_roll()
636+
#loading_bars_intro_1()
637+
#loading_bars_intro_2()
638+
#loading_bars_intro_3()
644639
main_menu()
645640
message_of_the_day()
646641
timefetch()

0 commit comments

Comments
 (0)