diff --git a/toontown/toonbase/ClientStartRemoteDB.py b/toontown/toonbase/ClientStartRemoteDB.py index 264a140b..df27236d 100755 --- a/toontown/toonbase/ClientStartRemoteDB.py +++ b/toontown/toonbase/ClientStartRemoteDB.py @@ -10,7 +10,7 @@ password = os.environ['ttsPassword'] accountServerEndpoint = ConfigVariableString( 'account-server-endpoint', - 'http://tigercat1.me/tmpremote/api2/').getValue() + 'http://tigercat1.me/tmpremote/api/').getValue() request = requests.post( accountServerEndpoint + 'login/', data={'n': username, 'p': password}) diff --git a/toontown/uberdog/ClientServicesManagerUD.py b/toontown/uberdog/ClientServicesManagerUD.py index 4cfca9e9..2a1e395f 100755 --- a/toontown/uberdog/ClientServicesManagerUD.py +++ b/toontown/uberdog/ClientServicesManagerUD.py @@ -30,7 +30,7 @@ if accountDBType == 'remote': minAccessLevel = simbase.config.GetInt('min-access-level', 100) accountServerEndpoint = simbase.config.GetString( - 'account-server-endpoint', 'http://tigercat1.me/tmpremote/api2/') + 'account-server-endpoint', 'http://tigercat1.me/tmpremote/api/') accountServerSecret = simbase.config.GetString( 'account-server-secret', '9sj6816aj1hs795j') @@ -40,7 +40,7 @@ http.setVerifySsl(0) def executeHttpRequest(url, **extras): - request = urllib2.Request('http://tigercat1.me/tmpremote/api2/' + url) + request = urllib2.Request('http://tigercat1.me/tmpremote/api/' + url) timestamp = str(int(time.time())) signature = hashlib.sha256(timestamp + accountServerSecret + "h*^ahJGHA017JI&A&*uyhU07") request.add_header('User-Agent', 'TTS-CSM')