From 44f3bb8ce1746ab2dae36c233cf263518d277c49 Mon Sep 17 00:00:00 2001 From: Xameren <115501936+Xameren@users.noreply.github.com> Date: Tue, 24 Sep 2024 20:19:26 +0200 Subject: [PATCH] Changed the new player text --- Casino.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Casino.py b/Casino.py index b847474..bb0d7fb 100644 --- a/Casino.py +++ b/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()