Bug - Fixed outfit_treats() returns empty aggregate for outfits with multiple treats

outfit_treats() returns the candies we get from Halloween for wearing that specific outfit. It seems to currently be broken for outfits that have multiple possible options for candy.

A normal working outfit result:
> ash outfit_treats("Gingerbread Best")

Returned: aggregate float [item]
gingerbread bugbear => 1.0

Broken outfits:
> ash outfit_treats("Frat Boy Ensemble")

Returned: aggregate float [item]

> ash outfit_treats("Eldritch Equipage")

Returned: aggregate float [item]


Extra information from Rinn:
Code:
it's just stored as an arraylist in the outfit, if you wanted it to be accurate you'd need to change how that data is loaded in EquipmentDatabase.java and how it's stored in SpecialOutfit.java
look for addTreat
 
Last edited:
Top