otp: no delay district checking after none found.
This commit is contained in:
parent
bd20778143
commit
f1051658f2
3 changed files with 1 additions and 3 deletions
|
@ -791,7 +791,7 @@ class OTPClientRepository(ClientRepositoryBase):
|
||||||
def doneWait(task, self = self):
|
def doneWait(task, self = self):
|
||||||
self.loginFSM.request('waitForShardList')
|
self.loginFSM.request('waitForShardList')
|
||||||
|
|
||||||
if __dev__:
|
if __debug__:
|
||||||
delay = 0.0
|
delay = 0.0
|
||||||
else:
|
else:
|
||||||
delay = 6.5 + random.random() * 2.0
|
delay = 6.5 + random.random() * 2.0
|
||||||
|
|
|
@ -41,7 +41,6 @@ class CharLonelyStateAI(StateData.StateData):
|
||||||
|
|
||||||
class CharChattyStateAI(StateData.StateData):
|
class CharChattyStateAI(StateData.StateData):
|
||||||
notify = DirectNotifyGlobal.directNotify.newCategory('CharChattyStateAI')
|
notify = DirectNotifyGlobal.directNotify.newCategory('CharChattyStateAI')
|
||||||
notify.setDebug(True)
|
|
||||||
|
|
||||||
def __init__(self, doneEvent, character):
|
def __init__(self, doneEvent, character):
|
||||||
StateData.StateData.__init__(self, doneEvent)
|
StateData.StateData.__init__(self, doneEvent)
|
||||||
|
|
|
@ -7,7 +7,6 @@ from direct.interval.SoundInterval import SoundInterval
|
||||||
|
|
||||||
class VineBat(NodePath, DirectObject):
|
class VineBat(NodePath, DirectObject):
|
||||||
notify = DirectNotifyGlobal.directNotify.newCategory('VineBat')
|
notify = DirectNotifyGlobal.directNotify.newCategory('VineBat')
|
||||||
notify.setDebug(True)
|
|
||||||
RADIUS = 1.7
|
RADIUS = 1.7
|
||||||
|
|
||||||
def __init__(self, batIndex, timeToTraverseField):
|
def __init__(self, batIndex, timeToTraverseField):
|
||||||
|
|
Loading…
Reference in a new issue