Fixed attribute labels sort order

This commit is contained in:
Collin Smith 2023-08-06 01:29:29 -07:00
parent 597835ab08
commit f811a85141

View File

@ -273,7 +273,7 @@ public class StatListLabeler {
@Override @Override
public int compareTo(Tuple other) { public int compareTo(Tuple other) {
return NumberUtils.compare(descPriority, other.descPriority); return NumberUtils.compare(other.descPriority, descPriority);
} }
@Override @Override