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:
|
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()
|
||||||
|
|
Loading…
Add table
Reference in a new issue