GTNewHorizons / JustEnoughCalculation

A simple minecraft mod help you calculate the cost for recipes
Other
7 stars 5 forks source link

Fixed so amount field is saved when going in and out of window #16

Closed Bmandk closed 3 months ago

Bmandk commented 3 months ago

I introduced a small bug where the amount of items for the current item is not being saved. This is fixed here by saving it to records.

Caedis commented 3 months ago

Can you figure a better way to write getCurrentAmount? You also left that unchecked

Bmandk commented 3 months ago

Pushed a change, so it now uses input validation and you can't even type non-numeric characters. Code seems better, but let me know if you think there's a better way.

Caedis commented 3 months ago

[^0-9] can technically be replaced with \D (not a digit)