mirror of
https://github.com/Xameren/Casino.git
synced 2025-02-04 08:29:24 +01:00
Changed the new player text
This commit is contained in:
parent
cb622d6af6
commit
44f3bb8ce1
1 changed files with 5 additions and 5 deletions
10
Casino.py
10
Casino.py
|
@ -1221,11 +1221,11 @@ def pickusername():
|
|||
if load_fail == True:
|
||||
while True:
|
||||
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")
|
||||
a = input()
|
||||
print("Are you sure? (Y/N)")
|
||||
b = input()
|
||||
if b.lower() == "y":
|
||||
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("Pick an username: ")
|
||||
print(f"Your username will {a}.")
|
||||
b = input("Proceed? (y/N) ")
|
||||
if b.lower() == "y" or b.lower == "yes":
|
||||
break
|
||||
username = a
|
||||
CasinoMenu()
|
||||
|
|
Loading…
Add table
Reference in a new issue