Skip to content

Commit

Permalink
round money on import
Browse files Browse the repository at this point in the history
  • Loading branch information
TehBrian committed Jul 22, 2024
1 parent 8299062 commit a28e6b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/Stage1.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
fillerFilledBottles
} = save);
money = new Decimal(save.money);
money = new Decimal(save.money).toDecimalPlaces(2, Decimal.ROUND_HALF_UP);
lastAutoSale = null;
lastFill = null;
}
Expand Down

0 comments on commit a28e6b0

Please sign in to comment.