Skip to content

Commit

Permalink
decrease sell price for brown rice because too op
Browse files Browse the repository at this point in the history
  • Loading branch information
Edward358-AI committed May 14, 2024
1 parent c9f715f commit e72d0e5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion market.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
sellRice.addEventListener("click", function sell() {
let total = playerdata.rice + playerdata.brownRice + playerdata.goldRice
let sold = playerdata.rice + playerdata.brownRice * 10 + playerdata.goldRice * 100
let sold = playerdata.rice + playerdata.brownRice * 8 + playerdata.goldRice * 100
playerdata.money += sold
playerdata.stats.money += sold
playerdata.stats.sold += total
Expand Down

0 comments on commit e72d0e5

Please sign in to comment.