Bug - Fixed Spleen Manager has a problem with acquiring Pixie Sticks

Bale

Minion
If I have 20 GG tickets, the spleen manager will tell me that I can acquire 2 pixie sticks. That's good. If I have 30 GG tickets it says I can get 3 pixie sticks. Awesome.

If I have 10 GG tickets it thinks that I cannot acquire any. That's bad.

I can actually acquire 2 pixie sticks if I have 20 tickets as you'd expect. However, if I choose to only acquire 1 pixie stick, leaving me with 10 tickets, the option will disappear. :(
 

slyz

Developer
I forgot to post about this, but during a run (where I never have more than 10 tickets on me at any time), I never see the option to use coffee pixie sticks in the spleen manager.

Apparently, line 1198 of ConcoctionDatabase.java should be
PHP:
if ( ticketCount >= 10 )
instead of
PHP:
if ( ticketCount > 10 )
 
Top