gw2e-static-data 0.5.12 → 0.5.13
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1453,10 +1453,7 @@ var GATHERING_NODES = [{
|
|
|
1453
1453
|
var GATHERING_NODES_OPTIMIZED = JSON.parse(JSON.stringify(GATHERING_NODES));
|
|
1454
1454
|
|
|
1455
1455
|
GATHERING_NODES_OPTIMIZED.sort(function (a, b) {
|
|
1456
|
-
|
|
1457
|
-
return a.region.localeCompare(b.region);
|
|
1458
|
-
}
|
|
1459
|
-
return a.zone - b.zone;
|
|
1456
|
+
return a.region.localeCompare(b.region) || a.zone.localeCompare(b.zone);
|
|
1460
1457
|
});
|
|
1461
1458
|
|
|
1462
1459
|
GATHERING_NODES_OPTIMIZED.forEach(function (item, index) {
|