Fix conflict

This commit is contained in:
2026-04-27 11:21:08 +10:00
parent 80ee95b918
commit abe4e9d6f0

View File

@@ -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));