diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-18 22:12:13 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-18 22:12:13 -0300 |
commit | a3fdd223759ca9d9b4ef519ab21443d7fdddcf6c (patch) | |
tree | 8055f1bb94447c3a0b6fe355714214f65cad8da0 /game | |
parent | 27203cb6f391ca2b8c081bcd17361578b6ec03aa (diff) | |
download | renpy-a3fdd223759ca9d9b4ef519ab21443d7fdddcf6c.tar.gz renpy-a3fdd223759ca9d9b4ef519ab21443d7fdddcf6c.tar.bz2 renpy-a3fdd223759ca9d9b4ef519ab21443d7fdddcf6c.tar.xz renpy-a3fdd223759ca9d9b4ef519ab21443d7fdddcf6c.zip |
Remove some dirty hacks which were hindering UX
Diffstat (limited to 'game')
-rw-r--r-- | game/update.rpy | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/game/update.rpy b/game/update.rpy index b4c5c66..764ea39 100644 --- a/game/update.rpy +++ b/game/update.rpy @@ -236,10 +236,9 @@ init python: return # Prepare to do Vault authentication - status_update(_("Steam auth disabled, trying Vault..."), 80) - time.sleep(1.0) + status_update(_("Steam auth disabled, logging on Vault..."), 80) vaultId = 0 - vaultToken = "ERROR" + vaultToken = "MANUAL" ######################################### ####### TODO FIXME # Must return and let a prompt for username & password |