You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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 😃 )
The text was updated successfully, but these errors were encountered:
toams
changed the title
you need 501 cowbells instead of 500 to buy an extra milkbottle
You need 501 cowbells instead of 500 to buy an extra milkbottle
May 5, 2019
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 😃 )
The text was updated successfully, but these errors were encountered: