diff options
author | Jesusaves <cpntb1@ymail.com> | 2021-05-09 19:38:09 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2021-05-09 19:38:09 -0300 |
commit | 45d6cbc1f98efcb1e54784111fb26b31c54efe8c (patch) | |
tree | 3c7b526150454766a03da6bc72afd344e35bc99f /game/client.rpy | |
parent | cd45f4cef59cf5dffe10ecf071baf397882dc4ab (diff) | |
download | renpy-45d6cbc1f98efcb1e54784111fb26b31c54efe8c.tar.gz renpy-45d6cbc1f98efcb1e54784111fb26b31c54efe8c.tar.bz2 renpy-45d6cbc1f98efcb1e54784111fb26b31c54efe8c.tar.xz renpy-45d6cbc1f98efcb1e54784111fb26b31c54efe8c.zip |
Add SSL support
Diffstat (limited to 'game/client.rpy')
-rw-r--r-- | game/client.rpy | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/game/client.rpy b/game/client.rpy index 8a80ad4..459711c 100644 --- a/game/client.rpy +++ b/game/client.rpy @@ -38,7 +38,7 @@ init 2 python: "world": persistent.serverlist[idx]["UUID"]} PWD="" try: - r=requests.post(VAULT_HOST+"/world_pass", json=auth, timeout=15.0) + r=vault.post(VAULT_HOST+"/world_pass", json=auth, timeout=15.0) if r.status_code != 200: stdout("Get World Auth - Returned error code %d" % r.status_code) else: |