diff --git a/pypybox2d/joints/rope.py b/pypybox2d/joints/rope.py index 571dc18..4c35f38 100644 --- a/pypybox2d/joints/rope.py +++ b/pypybox2d/joints/rope.py @@ -63,7 +63,7 @@ def __init__(self, body_a, body_b, local_anchor_a=(0, 0), local_anchor_b=(0, 0), Joint.__init__(self, body_a, body_b, collide_connected) self._local_anchor_a = Vec2(*local_anchor_a) - self._local_anchor_b = Vec2(*local_anchor_a) + self._local_anchor_b = Vec2(*local_anchor_b) self._state = INACTIVE_LIMIT self._length = 0.0 self._max_length = max_length