summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-08 19:06:34 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-08 19:06:34 -0300
commit9cc80ef7eff698c0f2891c5326b22d8484850260 (patch)
tree35dbc1764c065482794d95d2b1c14007264ae064
parent591a310426df2b33af48efb71bc451f3aedfa0f2 (diff)
downloadrenpy-9cc80ef7eff698c0f2891c5326b22d8484850260.tar.gz
renpy-9cc80ef7eff698c0f2891c5326b22d8484850260.tar.bz2
renpy-9cc80ef7eff698c0f2891c5326b22d8484850260.tar.xz
renpy-9cc80ef7eff698c0f2891c5326b22d8484850260.zip
Remove steam.cancel_ticket() in hopes this makes them don't expire weirdly
-rw-r--r--game/update.rpy2
1 files changed, 0 insertions, 2 deletions
diff --git a/game/update.rpy b/game/update.rpy
index 8410cc6..9db65bd 100644
--- a/game/update.rpy
+++ b/game/update.rpy
@@ -170,7 +170,6 @@ init python:
stdout("Steam login active, user %d" % accId)
## Retrieve new ticket ("token"), send it in Base64 to the API
- steam.cancel_ticket()
token = steam.get_session_ticket()
auth = {"accId": accId, "token": base64.b64encode(token)}
time.sleep(1.0)
@@ -192,7 +191,6 @@ init python:
## If unsucessful, give up on Steam Auth
if (r.status_code != 200):
- steam.cancel_ticket()
raise Exception("Vault returned code %d" % r.status_code)
## Receive the Vault Token