summaryrefslogtreecommitdiff
path: root/game/client.rpy
diff options
context:
space:
mode:
authorJesusaves <cpntb1@ymail.com>2021-05-09 19:38:09 -0300
committerJesusaves <cpntb1@ymail.com>2021-05-09 19:38:09 -0300
commit45d6cbc1f98efcb1e54784111fb26b31c54efe8c (patch)
tree3c7b526150454766a03da6bc72afd344e35bc99f /game/client.rpy
parentcd45f4cef59cf5dffe10ecf071baf397882dc4ab (diff)
downloadrenpy-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.rpy2
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: