From 6962cfeb87bf71ca52b9aae54c07858a9d00784c Mon Sep 17 00:00:00 2001 From: Jason Yeung Date: Mon, 7 Mar 2005 18:29:04 +0000 Subject: [PATCH] *** empty log message *** --- direct/src/distributed/DistributedNode.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/direct/src/distributed/DistributedNode.py b/direct/src/distributed/DistributedNode.py index fe129c1564..1b7abc843a 100644 --- a/direct/src/distributed/DistributedNode.py +++ b/direct/src/distributed/DistributedNode.py @@ -41,7 +41,8 @@ class DistributedNode(DistributedObject.DistributedObject, NodePath): if parent and isinstance(parent, NodePath): if self.getParent() != parent: print "generate: reparenting %s to %s" % (self, parent) - self.wrtReparentTo(parent) + # Comment out for now - JAY + # self.wrtReparentTo(parent) def __cmp__(self, other): @@ -162,4 +163,3 @@ class DistributedNode(DistributedObject.DistributedObject, NodePath): # setPosHpr provided by NodePath def d_setPosHpr(self, x, y, z, h, p, r): self.sendUpdate("setPosHpr", [x, y, z, h, p, r]) -