mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 10:54:24 -04:00
minor fix for debug code
This commit is contained in:
parent
5b54b547c7
commit
5e2981cf39
@ -301,8 +301,8 @@ class DoCollectionManager:
|
||||
def isInDoTables(self, doId):
|
||||
assert self.notify.debugStateCall(self)
|
||||
inDoHierarchy = False
|
||||
for parentId, parentZoneDict in self.__doHierarchy.values():
|
||||
for zoneId, zoneDoSet in parentZoneDict.values():
|
||||
for parentId, parentZoneDict in self.__doHierarchy.items():
|
||||
for zoneId, zoneDoSet in parentZoneDict.items():
|
||||
if doId in zoneDoSet:
|
||||
inDoHierarchy = True
|
||||
print "isInDoTables found " \
|
||||
|
Loading…
x
Reference in New Issue
Block a user