minecraft-data 3.59.1 → 3.59.3
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/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -971,7 +971,7 @@ declare namespace MinecraftData {
|
|
|
971
971
|
/** `1.13 - latest`
|
|
972
972
|
* custom channel is an identifier starting in minecraft namespace */
|
|
973
973
|
"customChannelIdentifier": boolean;
|
|
974
|
-
/** `1.17 -
|
|
974
|
+
/** `1.17 - latest`
|
|
975
975
|
* dimensionData is available, providing an additional information about the current dimension */
|
|
976
976
|
"dimensionDataIsAvailable": boolean;
|
|
977
977
|
/** `1.19 - latest`
|
|
@@ -1313,6 +1313,9 @@ declare namespace MinecraftData {
|
|
|
1313
1313
|
/** `1.20.2 - latest`
|
|
1314
1314
|
* Players and entities spawn with the same spawn_entity packet */
|
|
1315
1315
|
"unifiedPlayerAndEntitySpawnPacket": boolean;
|
|
1316
|
+
/** `1.20.3 - latest`
|
|
1317
|
+
* Chat message packets use NBT to serialize chat components instead of JSON */
|
|
1318
|
+
"chatPacketsUseNbtComponents": boolean;
|
|
1316
1319
|
}
|
|
1317
1320
|
|
|
1318
1321
|
export interface Version {
|
|
@@ -110,7 +110,7 @@
|
|
|
110
110
|
{
|
|
111
111
|
"name": "dimensionDataIsAvailable",
|
|
112
112
|
"description": "dimensionData is available, providing an additional information about the current dimension",
|
|
113
|
-
"versions": ["1.17", "
|
|
113
|
+
"versions": ["1.17", "latest"]
|
|
114
114
|
},
|
|
115
115
|
{
|
|
116
116
|
"name": "dimensionDataInCodec",
|
|
@@ -788,5 +788,10 @@
|
|
|
788
788
|
"name": "unifiedPlayerAndEntitySpawnPacket",
|
|
789
789
|
"description": "Players and entities spawn with the same spawn_entity packet",
|
|
790
790
|
"versions": ["1.20.2", "latest"]
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
"name": "chatPacketsUseNbtComponents",
|
|
794
|
+
"description": "Chat message packets use NBT to serialize chat components instead of JSON",
|
|
795
|
+
"versions": ["1.20.3", "latest"]
|
|
791
796
|
}
|
|
792
797
|
]
|
|
@@ -1,3 +1,9 @@
|
|
|
1
|
+
## 3.59.3
|
|
2
|
+
* [pc: add `chatPacketsUseNbtComponents` feature for 1.20.3](https://github.com/PrismarineJS/minecraft-data/commit/42d7ecc1aa70dd0d7683aada09aea8c498d1a1a5) (thanks @extremeheat)
|
|
3
|
+
|
|
4
|
+
## 3.59.2
|
|
5
|
+
* [Fix pc dimensionDataIsAvailable feature range](https://github.com/PrismarineJS/minecraft-data/commit/afd576f9b3cbedc4c2f7cbca1e849dc3760027b1) (thanks @extremeheat)
|
|
6
|
+
|
|
1
7
|
## 3.59.1
|
|
2
8
|
* [Add pc feature `unifiedPlayerAndEntitySpawnPacket`](https://github.com/PrismarineJS/minecraft-data/commit/bd3c9757d0f9d40c797024ed09c3a5e99e815b77) (thanks @extremeheat)
|
|
3
9
|
* [Add an unicity test for features. (#824)](https://github.com/PrismarineJS/minecraft-data/commit/587a1341c83ef4fc1cf3353d35b09435a11f8217) (thanks @rom1504)
|