diff options
author | Astatin <[email protected]> | 2025-06-18 17:24:26 +0200 |
---|---|---|
committer | Astatin <[email protected]> | 2025-06-18 17:24:26 +0200 |
commit | 9adada8eee304dbd665f97b9c5ca2726473f8212 (patch) | |
tree | 3cde36b0a124bedfb07f55cf40097ddfaaed5d32 | |
parent | 14b1fc9b3ea5520a3e9c5a7a457a7a03660bc910 (diff) |
Fixing oopsie error message using variables that don't exist :3
-rw-r--r-- | instructions.go | 2 |
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 { |