Browse Source

replace deprecated usage

David Rose 20 years ago
parent
commit
a711f19e05
1 changed files with 1 additions and 1 deletions
  1. 1 1
      direct/src/directtools/DirectSelection.py

+ 1 - 1
direct/src/directtools/DirectSelection.py

@@ -419,7 +419,7 @@ class SelectionQueue(CollisionHandlerQueue):
         # And a traverser to do the actual collision tests
         self.ct = CollisionTraverser("DirectSelection")
         # Let the traverser know about the collision node and the queue
-        self.ct.addCollider(self.collisionNode, self)
+        self.ct.addCollider(self.collisionNodePath, self)
         # List of objects that can't be selected
         self.unpickable = UNPICKABLE
         # Derived class must add Collider to complete initialization