From a892e5ca7cb01b6cd9064e1e328786c9f4c73b5f Mon Sep 17 00:00:00 2001 From: Schildkroet Date: Thu, 15 Feb 2024 21:58:35 +0100 Subject: [PATCH] Bugfix uccnc_post.py Fixed drill cycles for uccnc post --- src/Mod/Path/Path/Post/scripts/uccnc_post.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Mod/Path/Path/Post/scripts/uccnc_post.py b/src/Mod/Path/Path/Post/scripts/uccnc_post.py index c8d1eccb74..15ea139e1d 100644 --- a/src/Mod/Path/Path/Post/scripts/uccnc_post.py +++ b/src/Mod/Path/Path/Post/scripts/uccnc_post.py @@ -646,7 +646,7 @@ def parse(pathobj): commandlist.append(param + str(int(c.Parameters["S"]))) else: if ( - (not REPEAT_ARGUMENTS) + (not REPEAT_ARGUMENTS and c.Name not in ["G81", "G82", "G83"]) and (param in currLocation) and (currLocation[param] == c.Parameters[param]) ):