From 8610954eaa2225d0e61cf1b5c04dc013c85b6fd3 Mon Sep 17 00:00:00 2001 From: Darren Ranalli Date: Fri, 5 May 2006 23:43:36 +0000 Subject: [PATCH] fixed flag bug --- direct/src/distributed/DoInterestManager.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/distributed/DoInterestManager.py b/direct/src/distributed/DoInterestManager.py index 6980de8834..1b23c62df9 100755 --- a/direct/src/distributed/DoInterestManager.py +++ b/direct/src/distributed/DoInterestManager.py @@ -82,7 +82,7 @@ class DoInterestManager(DirectObject.DirectObject): DirectObject.DirectObject.__init__(self) self._addInterestEvent = uniqueName('DoInterestManager-Add') self._removeInterestEvent = uniqueName('DoInterestManager-Remove') - self._noNewInterests = True + self._noNewInterests = False def _getAnonymousEvent(self, desc): return 'anonymous-%s-%s' % (desc, DoInterestManager._Serial.next())