minecraft-data 3.74.0 → 3.76.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
|
@@ -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.
|
|
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
package/index.d.ts
CHANGED
|
@@ -1351,6 +1351,9 @@ declare namespace MinecraftData {
|
|
|
1351
1351
|
/** `1.20.5 - latest`
|
|
1352
1352
|
* New Item schema */
|
|
1353
1353
|
"itemsWithComponents": boolean;
|
|
1354
|
+
/** `1.14 - latest`
|
|
1355
|
+
* Support the execute command */
|
|
1356
|
+
"hasExecuteCommand": boolean;
|
|
1354
1357
|
}
|
|
1355
1358
|
|
|
1356
1359
|
type Object = { [key: string]: any }
|
|
@@ -825,5 +825,10 @@
|
|
|
825
825
|
"name": "itemsWithComponents",
|
|
826
826
|
"description": "New Item schema",
|
|
827
827
|
"versions": ["1.20.5", "latest"]
|
|
828
|
+
},
|
|
829
|
+
{
|
|
830
|
+
"name": "hasExecuteCommand",
|
|
831
|
+
"description": "Support the execute command",
|
|
832
|
+
"versions": ["1.14", "latest"]
|
|
828
833
|
}
|
|
829
834
|
]
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 3.76.0
|
|
2
|
+
* [add has execute command feature](https://github.com/PrismarineJS/minecraft-data/commit/20f34ae536e30370ecdb6fde6412ddba4d67d9a0) (thanks @rom1504)
|
|
3
|
+
|
|
4
|
+
## 3.75.0
|
|
5
|
+
* [use login data of 1.20.5 in 1.20.6](https://github.com/PrismarineJS/minecraft-data/commit/b5d1b0bfa18d3c9f41d289c285d2b54827f22004) (thanks @rom1504)
|
|
6
|
+
|
|
1
7
|
## 3.74.0
|
|
2
8
|
* [update recipes for 1.20.6](https://github.com/PrismarineJS/minecraft-data/commit/636d3a7e027e75ab1deeb4cd214b73306a836473) (thanks @rom1504)
|
|
3
9
|
|