Skip to content

Commit

Permalink
Extra fix foor multiply
Browse files Browse the repository at this point in the history
  • Loading branch information
ChasarooniZ committed Sep 19, 2024
1 parent f4280b9 commit 3bd5d99
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/helpers/rollTerms.js
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ function processArithmeticExpression(term, result, flavor) {
}
if (term.operator === "*") {
const [first, second] = operands;
return result.concat(first, first);
return result.concat(first, second);
}
return result;
}
Expand Down

0 comments on commit 3bd5d99

Please sign in to comment.