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
- if (a.region !== b.region) {
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) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gw2e-static-data",
3
- "version": "0.5.12",
3
+ "version": "0.5.13",
4
4
  "description": "All the static data used in gw2efficiency and it's services",
5
5
  "main": "./build/index.js",
6
6
  "scripts": {