Skip to content

Commit

Permalink
adjusted balance of the cat purchasing process
Browse files Browse the repository at this point in the history
  • Loading branch information
menaechmi committed Jun 13, 2021
1 parent 01ae538 commit ce2ea02
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/shop.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ let Shop = {
},

getCatPrice: function(numCats, buyMultiplier) {
return (5 * numCats) / buyMultiplier;
return (5 * (numCats + 5)) / buyMultiplier;
},

buyCat: function(numCats, buyMultiplier) {
Expand Down

0 comments on commit ce2ea02

Please sign in to comment.