Skip to content

Commit

Permalink
oops!
Browse files Browse the repository at this point in the history
  • Loading branch information
PiantaMK committed Oct 25, 2024
1 parent cdb1b2e commit ecee23e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/mk.js
Original file line number Diff line number Diff line change
Expand Up @@ -18399,7 +18399,7 @@ function processCode(cheatCode) {
result = current - parseFloat(arg.slice(0, -1));
} else { // exact position specified
const parsed = parseFloat(arg); // sanity
result = isNaN(parsed) ? 0 : parsed;
result = isNaN(parsed) ? undefined : parsed;
}

let retval;
Expand Down

0 comments on commit ecee23e

Please sign in to comment.