minecraft-data 3.72.0 → 3.75.0

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.
package/data.js CHANGED
@@ -1432,7 +1432,7 @@ module.exports =
1432
1432
  get effects () { return require("./minecraft-data/data/pc/1.20.5/effects.json") },
1433
1433
  get items () { return require("./minecraft-data/data/pc/1.20.5/items.json") },
1434
1434
  get enchantments () { return require("./minecraft-data/data/pc/1.20.5/enchantments.json") },
1435
- get recipes () { return require("./minecraft-data/data/pc/1.20.3/recipes.json") },
1435
+ get recipes () { return require("./minecraft-data/data/pc/1.20.5/recipes.json") },
1436
1436
  get instruments () { return require("./minecraft-data/data/pc/1.20.5/instruments.json") },
1437
1437
  get materials () { return require("./minecraft-data/data/pc/1.20.5/materials.json") },
1438
1438
  get language () { return require("./minecraft-data/data/pc/1.20.5/language.json") },
@@ -1444,7 +1444,7 @@ module.exports =
1444
1444
  get particles () { return require("./minecraft-data/data/pc/1.20.5/particles.json") },
1445
1445
  get blockLoot () { return require("./minecraft-data/data/pc/1.20/blockLoot.json") },
1446
1446
  get entityLoot () { return require("./minecraft-data/data/pc/1.20/entityLoot.json") },
1447
- get loginPacket () { return require("./minecraft-data/data/pc/1.20.2/loginPacket.json") },
1447
+ get loginPacket () { return require("./minecraft-data/data/pc/1.20.5/loginPacket.json") },
1448
1448
  get tints () { return require("./minecraft-data/data/pc/1.20.5/tints.json") },
1449
1449
  get mapIcons () { return require("./minecraft-data/data/pc/1.20.2/mapIcons.json") },
1450
1450
  get commands () { return require("./minecraft-data/data/pc/1.20.3/commands.json") },
package/doc/history.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # History
2
2
 
3
+ ## 3.75.0
4
+
5
+ * update `minecraft-data`
6
+
7
+ ## 3.74.0
8
+
9
+ * update `minecraft-data`
10
+
3
11
  ## 3.72.0
4
12
 
5
13
  * update `minecraft-data`
@@ -1431,7 +1431,7 @@
1431
1431
  "effects": "pc/1.20.5",
1432
1432
  "items": "pc/1.20.5",
1433
1433
  "enchantments": "pc/1.20.5",
1434
- "recipes": "pc/1.20.3",
1434
+ "recipes": "pc/1.20.5",
1435
1435
  "instruments": "pc/1.20.5",
1436
1436
  "materials": "pc/1.20.5",
1437
1437
  "language": "pc/1.20.5",
@@ -1443,7 +1443,7 @@
1443
1443
  "particles": "pc/1.20.5",
1444
1444
  "blockLoot": "pc/1.20",
1445
1445
  "entityLoot": "pc/1.20",
1446
- "loginPacket": "pc/1.20.2",
1446
+ "loginPacket": "pc/1.20.5",
1447
1447
  "tints": "pc/1.20.5",
1448
1448
  "mapIcons": "pc/1.20.2",
1449
1449
  "commands": "pc/1.20.3",
@@ -57,5 +57,6 @@
57
57
  "1.20.2",
58
58
  "1.20.3",
59
59
  "1.20.4",
60
- "1.20.5"
60
+ "1.20.5",
61
+ "1.20.6"
61
62
  ]
@@ -1,3 +1,12 @@
1
+ ## 3.75.0
2
+ * [use login data of 1.20.5 in 1.20.6](https://github.com/PrismarineJS/minecraft-data/commit/b5d1b0bfa18d3c9f41d289c285d2b54827f22004) (thanks @rom1504)
3
+
4
+ ## 3.74.0
5
+ * [update recipes for 1.20.6](https://github.com/PrismarineJS/minecraft-data/commit/636d3a7e027e75ab1deeb4cd214b73306a836473) (thanks @rom1504)
6
+
7
+ ## 3.73.0
8
+ * [add missing 1.20.6 in versions.json](https://github.com/PrismarineJS/minecraft-data/commit/214ae40d2d2c383cf5ef5050529be1693961930b) (thanks @rom1504)
9
+
1
10
  ## 3.72.0
2
11
  * [Add 1.20.6 support assuming no change from 1.20.5.](https://github.com/PrismarineJS/minecraft-data/commit/9e9e84df7890b1a59f2f074fb1b0c0eb0885ca74) (thanks @rom1504)
3
12
 
@@ -127,7 +127,7 @@ require('./version_iterator')(function (p, versionString) {
127
127
  const recipe = recipes[craftingTable.id]
128
128
  if (!recipe[0]) return
129
129
  // remove the if after fixing https://github.com/PrismarineJS/minecraft-data/issues/917
130
- if (versionString !== 'pc 1.20.5') {
130
+ if (versionString !== 'pc 1.20.5' && versionString !== 'pc 1.20.6') {
131
131
  assert.notEqual(recipe.length, 1) // Check that crafting table has multiple recipes.
132
132
  }
133
133
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.72.0",
3
+ "version": "3.75.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",