aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAstatin <[email protected]>2025-06-18 17:24:26 +0200
committerAstatin <[email protected]>2025-06-18 17:24:26 +0200
commit9adada8eee304dbd665f97b9c5ca2726473f8212 (patch)
tree3cde36b0a124bedfb07f55cf40097ddfaaed5d32
parent14b1fc9b3ea5520a3e9c5a7a457a7a03660bc910 (diff)
Fixing oopsie error message using variables that don't exist :3
-rw-r--r--instructions.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/instructions.go b/instructions.go
index c852ec4..b9b918a 100644
--- a/instructions.go
+++ b/instructions.go
@@ -563,7 +563,7 @@ instruction_param_loop:
}
if instrParam.MacroForbidden && isMacro {
- rejectedError := fmt.Errorf("\t[Rejected] Param Type %v: This instruction cannot be used with this set of params inside of a macro\n", paramType, err)
+ rejectedError := fmt.Errorf("\t[Rejected] This instruction cannot be used with this set of params inside of a macro\n")
if rejectedErrors == nil {
rejectedErrors = rejectedError
} else {