Bug - Fixed Maximizer doesn't show price for buff items in closet

theo1001

Member
On the modifier maximizer, when selecting Max price: all consumables, it will show the price for items on inventory or items you need to acquire but for items in your closet (where the text is "uncloset & use") it won't show the price.

Image included just in case my description wasn't good enough.
maximizer bug.png
 

AlbinoRhino

Active member
I changed the line :

if ( priceLevel == 2 && checkedItem.inventory > 0 )

to

if ( priceLevel == 2 && ( checkedItem.initial > 0 || checkedItem.creatable > 0 ) )

in Maximizer.java in my local build. Seems to have fixed this issue for me.
 
Top