Plumber

Plumber

6M Downloads

Top x runs this week for delves always sorting on time instead of tier

jone-l opened this issue ยท 1 comments

commented

The top x runs this week for delves does not sort properly on delve tier:

Image

Looks like AddRecentDelvesRecordsToTooltip function in ScenarioTracker.lua sorts the wrong table when determining the top runs.

On line 166:

              table.sort(records, function(a, b)

records should probably be swapped with tbl:

              table.sort(tbl, function(a, b)
commented

Thanks for the report! It's been fixed.