From 2e00c465a62cf4abe39b5ad4f7c80cbc39d3bebf Mon Sep 17 00:00:00 2001 From: John Cote Date: Tue, 19 Nov 2019 18:04:10 -0500 Subject: [PATCH] toonbase: localhost -> 127.0.0.1 While Linux is able to connect to localhost, Windows & macOS aren't. --- toontown/toonbase/ToonBase.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/toontown/toonbase/ToonBase.py b/toontown/toonbase/ToonBase.py index 326e0fa..2279948 100644 --- a/toontown/toonbase/ToonBase.py +++ b/toontown/toonbase/ToonBase.py @@ -307,7 +307,7 @@ class ToonBase(OTPBase.OTPBase): gameServer = launcherServer self.notify.info('Using gameServer from launcher: %s ' % gameServer) else: - gameServer = 'localhost' + gameServer = '127.0.0.1' serverPort = base.config.GetInt('server-port', 7198) serverList = [] for name in gameServer.split(';'):