Changed the new player text

This commit is contained in:
Xameren 2024-09-24 20:19:26 +02:00 committed by GitHub
parent cb622d6af6
commit 44f3bb8ce1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1221,11 +1221,11 @@ def pickusername():
if load_fail == True: if load_fail == True:
while True: while True:
print("\033[H\033[J", end="") print("\033[H\033[J", end="")
print("You seem to be new here. Please enter your username.\n If you arent new, please restart this app") print("You seem to be new here. Let's create you an account!\nYou will be prompted to pick an username. You can also quit this program with Ctrl+C.")
a = input() a = input("Pick an username: ")
print("Are you sure? (Y/N)") print(f"Your username will {a}.")
b = input() b = input("Proceed? (y/N) ")
if b.lower() == "y": if b.lower() == "y" or b.lower == "yes":
break break
username = a username = a
CasinoMenu() CasinoMenu()