diff options
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: |