Dariasteam / Cows-Revenge

Casual platform game project for learning purposes
Other
37 stars 9 forks source link

You need 501 cowbells instead of 500 to buy an extra milkbottle #19

Open toams opened 5 years ago

toams commented 5 years ago

This condition: if (price < global.saved_cowbells): is only true if you have 501 or more cowbells. changing this in something like if (global.saved_cowbells >= price): will fix this

(I'm to lazy to clone and figure out how to build to test this fix myself sorry :smiley: )