Dariasteam / Cows-Revenge

Casual platform game project for learning purposes

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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

toams opened this issue · comments

commented

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 😃 )