minecraft-data 2.110.0 → 2.111.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
@@ -1035,6 +1035,7 @@ module.exports =
1035
1035
  get mapIcons () { return require("./minecraft-data/data/pc/1.16/mapIcons.json") }
1036
1036
  },
1037
1037
  '1.18': {
1038
+ get attributes () { return require("./minecraft-data/data/pc/1.17/attributes.json") },
1038
1039
  get blocks () { return require("./minecraft-data/data/pc/1.18/blocks.json") },
1039
1040
  get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.17/blockCollisionShapes.json") },
1040
1041
  get biomes () { return require("./minecraft-data/data/pc/1.18/biomes.json") },
@@ -1058,6 +1059,7 @@ module.exports =
1058
1059
  get mapIcons () { return require("./minecraft-data/data/pc/1.16/mapIcons.json") }
1059
1060
  },
1060
1061
  '1.18.1': {
1062
+ get attributes () { return require("./minecraft-data/data/pc/1.17/attributes.json") },
1061
1063
  get blocks () { return require("./minecraft-data/data/pc/1.18/blocks.json") },
1062
1064
  get blockCollisionShapes () { return require("./minecraft-data/data/pc/1.17/blockCollisionShapes.json") },
1063
1065
  get biomes () { return require("./minecraft-data/data/pc/1.18/biomes.json") },
package/doc/history.md CHANGED
@@ -1,3 +1,6 @@
1
+ ## 2.111.0
2
+ * update mcdata
3
+
1
4
  ## 2.110.0
2
5
  * update mcdata
3
6
 
@@ -1034,6 +1034,7 @@
1034
1034
  "mapIcons": "pc/1.16"
1035
1035
  },
1036
1036
  "1.18": {
1037
+ "attributes": "pc/1.17",
1037
1038
  "blocks": "pc/1.18",
1038
1039
  "blockCollisionShapes": "pc/1.17",
1039
1040
  "biomes": "pc/1.18",
@@ -1057,6 +1058,7 @@
1057
1058
  "mapIcons": "pc/1.16"
1058
1059
  },
1059
1060
  "1.18.1": {
1061
+ "attributes": "pc/1.17",
1060
1062
  "blocks": "pc/1.18",
1061
1063
  "blockCollisionShapes": "pc/1.17",
1062
1064
  "biomes": "pc/1.18",
@@ -1,3 +1,6 @@
1
+ ## 2.111.0
2
+ * pc: add missing attributes pointer for 1.18
3
+
1
4
  ## 2.110.0
2
5
  * pc: add cake outshapes (@nickelpro, @SaubereSache)
3
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "2.110.0",
3
+ "version": "2.111.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",