From e7fb5761d1e32a35b41fc7008be9fad3aca92688 Mon Sep 17 00:00:00 2001 From: Little Cat Date: Mon, 9 Jan 2023 01:12:41 -0400 Subject: [PATCH] toonbase: Don't load Place first before objects. This config lets the game loads the area first instead of waiting for objects to be generated. This has been turned off by default because this is the main cause of a long-standing bug where teleporting friends in a street would always fail if you're in the same neighborhood. --- 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 0bdc15b..99d29a9 100644 --- a/toontown/toonbase/ToonBase.py +++ b/toontown/toonbase/ToonBase.py @@ -50,7 +50,7 @@ class ToonBase(OTPBase.OTPBase): self.disableShowbaseMouse() base.debugRunningMultiplier /= OTPGlobals.ToonSpeedFactor self.toonChatSounds = ConfigVariableBool('toon-chat-sounds', 1).value - self.placeBeforeObjects = ConfigVariableBool('place-before-objects', 1).value + self.placeBeforeObjects = ConfigVariableBool('place-before-objects', 0).value self.endlessQuietZone = False self.wantDynamicShadows = 0 self.exitErrorCode = 0