From abe4e9d6f01c16a565687901093fde882eed257e Mon Sep 17 00:00:00 2001 From: DiamondNether90 Date: Mon, 27 Apr 2026 11:21:08 +1000 Subject: [PATCH] Fix conflict --- src/interpreter.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interpreter.c b/src/interpreter.c index c6cff36..a85b0ee 100644 --- a/src/interpreter.c +++ b/src/interpreter.c @@ -1432,9 +1432,9 @@ GroundValue interpretGroundInstruction(GroundInstruction inst, GroundScope* scop } if (right->type == INT) { - result += right->data.intVal; + result -= right->data.intVal; } else if (right->type == DOUBLE) { - result += right->data.doubleVal; + result -= right->data.doubleVal; } addVariable(scope->variables, in->args.args[2].value.refName, createDoubleGroundValue(result));