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.
This commit is contained in:
parent
bc5bafbacf
commit
e7fb5761d1
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue