Page 1 of 1

Bananas.js fix

Posted: Tue Mar 27, 2012 7:55 pm
by dragon slayer
In the bananas.js there is a small problem.

if you look at this line.

Code: Select all

iUsed.SetTag("BananaCounter", maxBananas); 	// Add 5 bananas to the tree initially
You notic it says maxBananas

well if you look at top of the script it says

Code: Select all

var maxResource = 5;
I changed

Code: Select all

var maxResource = 5;
to

Code: Select all

var maxBananas = 5; //maximum amount of resources on a given item
I hope thios fix makes it in next version :)

Re: Bananas.js fix

Posted: Sun Oct 21, 2012 11:40 pm
by Xuri
Thanks. Will be in the next version!