flipping the sort

This commit is contained in:
Christian 'ketura' McCarty
2023-01-07 00:35:24 -06:00
parent 1670967a77
commit db5580de36

View File

@@ -63,7 +63,7 @@ var StatsUI = Class.extend({
var comps = 0;
var total = 0;
json.Stats.sort((a,b) => { return a.Count - b.Count; })
json.Stats.sort((a,b) => { return b.Count - a.Count; })
json["Stats"].forEach(item => {
if(item.Casual) {