diff --git a/otp/distributed/OTPClientRepository.py b/otp/distributed/OTPClientRepository.py index f52d47e..f169ed1 100644 --- a/otp/distributed/OTPClientRepository.py +++ b/otp/distributed/OTPClientRepository.py @@ -791,7 +791,7 @@ class OTPClientRepository(ClientRepositoryBase): def doneWait(task, self = self): self.loginFSM.request('waitForShardList') - if __dev__: + if __debug__: delay = 0.0 else: delay = 6.5 + random.random() * 2.0 diff --git a/toontown/classicchars/CharStateDatasAI.py b/toontown/classicchars/CharStateDatasAI.py index 81864bc..6e2f68b 100644 --- a/toontown/classicchars/CharStateDatasAI.py +++ b/toontown/classicchars/CharStateDatasAI.py @@ -41,7 +41,6 @@ class CharLonelyStateAI(StateData.StateData): class CharChattyStateAI(StateData.StateData): notify = DirectNotifyGlobal.directNotify.newCategory('CharChattyStateAI') - notify.setDebug(True) def __init__(self, doneEvent, character): StateData.StateData.__init__(self, doneEvent) diff --git a/toontown/minigame/VineBat.py b/toontown/minigame/VineBat.py index 23d3f1c..2f79485 100644 --- a/toontown/minigame/VineBat.py +++ b/toontown/minigame/VineBat.py @@ -7,7 +7,6 @@ from direct.interval.SoundInterval import SoundInterval class VineBat(NodePath, DirectObject): notify = DirectNotifyGlobal.directNotify.newCategory('VineBat') - notify.setDebug(True) RADIUS = 1.7 def __init__(self, batIndex, timeToTraverseField):