Top x runs this week for delves always sorting on time instead of tier
jone-l opened this issue ยท 1 comments
The top x runs this week for delves does not sort properly on delve tier:
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)