don't enable smoothing after node is disabled

This commit is contained in:
Greg Wiatroski 2003-07-15 19:15:27 +00:00
parent 923bf3f465
commit 8e6fc1d0ff

View File

@ -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")