diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-10 19:14:50 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-10 19:14:50 -0300 |
commit | e2fcef5abaeaf357fff7c76e1d368b7f45d9ce8b (patch) | |
tree | 02d07da13e7692fa4d14c9859d0d9589666f6103 | |
parent | 3d707d62fcc332971a3aeb690ed2488f46adc1ad (diff) | |
download | renpy-e2fcef5abaeaf357fff7c76e1d368b7f45d9ce8b.tar.gz renpy-e2fcef5abaeaf357fff7c76e1d368b7f45d9ce8b.tar.bz2 renpy-e2fcef5abaeaf357fff7c76e1d368b7f45d9ce8b.tar.xz renpy-e2fcef5abaeaf357fff7c76e1d368b7f45d9ce8b.zip |
Steam Login - Inform who logged in. Want to make sure this is not a false positive.
-rw-r--r-- | game/update.rpy | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/game/update.rpy b/game/update.rpy index 9c4525b..3d5c302 100644 --- a/game/update.rpy +++ b/game/update.rpy @@ -223,7 +223,8 @@ init python: has_steam = True stdout("Steam session initialized successfully", True) status_update("Steam session initialized successfully", 99) - time.sleep(0.1) + renpy.notify("Welcome, %s" % steam.get_persona_name()) + time.sleep(0.25) except: # NO FALLBACK: if Steam Login is on, do not try vault (no multiacc) if persistent.steam: |