Page 1 of 1

BUG: coe and aom if loot item has charges loot box is incorrect

Posted: Sun May 05, 2019 5:46 am
by Ememjr
Items that half charges like fireworks and weakened badger claw will not show properly in loot box, but do when examined

verified in Dof
verified in AoM
reported on CoE

Re: BUG: coe and aom if loot item has charges loot box is incorrect

Posted: Mon May 06, 2019 4:11 am
by Ememjr
ok after 2 days of trying to kill this bug I finally got it it was not necessarily the charges causing the issue

the actual cause of the issue is because they both had a String stat in them , "Basic Firework", and "Frenzied Badger" that should not be sent to the UpdateLoot Struct until versions around 63119( to be verified at a later date)

so the simple fix was
on or around line 1598 in items.cpp

Code: Select all

if (item_string_stats.size() > 0)
to

Code: Select all

if (item_string_stats.size() > 0 && !loot_item)
committed in SVN Rev # 2824