From 8e6fc1d0fff70f1d180ff910723e6960e6ed7237 Mon Sep 17 00:00:00 2001 From: Greg Wiatroski Date: Tue, 15 Jul 2003 19:15:27 +0000 Subject: [PATCH] don't enable smoothing after node is disabled --- direct/src/distributed/DistributedSmoothNode.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/direct/src/distributed/DistributedSmoothNode.py b/direct/src/distributed/DistributedSmoothNode.py index 3c9c0f57b6..317daa7d38 100644 --- a/direct/src/distributed/DistributedSmoothNode.py +++ b/direct/src/distributed/DistributedSmoothNode.py @@ -110,7 +110,7 @@ class DistributedSmoothNode(DistributedNode.DistributedNode): running, you won't be able to lerp the node or directly position it. """ - if not self.wantsSmoothing() or self.isLocal(): + if not self.wantsSmoothing() or self.isLocal() or self.isDisabled(): return if not self.smoothStarted: taskName = self.taskName("smooth")