minecraft-data 2.108.0 → 2.109.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 +1 -1
- package/doc/history.md +3 -0
- package/minecraft-data/data/dataPaths.json +1 -1
- package/minecraft-data/doc/history.md +3 -0
- package/package.json +1 -1
package/data.js
CHANGED
|
@@ -1071,7 +1071,7 @@ module.exports =
|
|
|
1071
1071
|
get entities () { return require("./minecraft-data/data/pc/1.18/entities.json") },
|
|
1072
1072
|
get protocol () { return require("./minecraft-data/data/pc/1.18/protocol.json") },
|
|
1073
1073
|
get windows () { return require("./minecraft-data/data/pc/1.16.1/windows.json") },
|
|
1074
|
-
get version () { return require("./minecraft-data/data/pc/1.18/version.json") },
|
|
1074
|
+
get version () { return require("./minecraft-data/data/pc/1.18.1/version.json") },
|
|
1075
1075
|
get foods () { return require("./minecraft-data/data/pc/1.17/foods.json") },
|
|
1076
1076
|
get particles () { return require("./minecraft-data/data/pc/1.18/particles.json") },
|
|
1077
1077
|
get blockLoot () { return require("./minecraft-data/data/pc/1.18/blockLoot.json") },
|
package/doc/history.md
CHANGED