Fixed: Don't mutate a BoundingBox while drawing clone tool outlines.

This commit is contained in:
David Vierra 2012-11-03 18:20:23 -10:00
parent 9381baf735
commit a84ab25539

View File

@ -731,7 +731,7 @@ class CloneTool(EditorTool):
for i in range(self.repeatCount):
self.editor.drawConstructionCube(box, color)
box.origin += delta
box = BoundingBox(box.origin + delta, box.size)
def sourceLevel(self):
return self.level