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

Commit 0fe5acb

Browse files
committed
fixed the commandline dupe issue! (thanks smashel!)
1 parent 4d884c5 commit 0fe5acb

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

VAIIYA terminal.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,11 +144,15 @@ def timefetch():
144144
print("have a wonerful day at VAIIYA Technologies LLC!")
145145
print("""|""")
146146
# Start the TERMINAL and its commands
147+
def terminal_start_message():
148+
print(" for a list of commands, please type 'commands' ")
149+
print("""|""")
150+
151+
147152
def open_terminal():
148153

149154
while True:
150-
print(" for a list of commands, please type 'commands' ")
151-
print("""|""")
155+
152156
text = prompt('awaiting command(s)>>> ')
153157
#put all the usercommands under here please!
154158

@@ -327,6 +331,7 @@ def game_loop():
327331
loading_bars_intro_3()
328332
main_menu()
329333
timefetch()
334+
terminal_start_message()
330335
open_terminal()
331336

332337
while True:

0 commit comments

Comments
 (0)