From f97ae0bdafce07789a232c7d867d84f7dd4b38f5 Mon Sep 17 00:00:00 2001 From: XANTRONIX Development Date: Fri, 29 Dec 2023 23:21:54 -0500 Subject: [PATCH] That was it??? Really??? --- py/hexagram/cluster.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/py/hexagram/cluster.py b/py/hexagram/cluster.py index 97fccfc..09c8d31 100644 --- a/py/hexagram/cluster.py +++ b/py/hexagram/cluster.py @@ -44,10 +44,7 @@ class Path(): elif command == 'm': for i in range(0, len(args)): if i == 0: - if last == 'Z' or last == 'z': - cr.move_to(*args[i]) - else: - cr.rel_move_to(*args[i]) + cr.rel_move_to(*args[i]) else: cr.rel_line_to(*args[i]) elif command == 'L':