minecraft-data 3.87.0 → 3.88.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/doc/history.md
CHANGED
package/index.d.ts
CHANGED
|
@@ -1369,6 +1369,12 @@ declare namespace MinecraftData {
|
|
|
1369
1369
|
/** `1.21.3 - latest`
|
|
1370
1370
|
* Server does not send ack on creative_set_slot packets */
|
|
1371
1371
|
"noAckOnCreateSetSlotPacket": boolean;
|
|
1372
|
+
/** `1.8 - 1.17`
|
|
1373
|
+
* title system uses legacy title packets */
|
|
1374
|
+
"titleUsesLegacyPackets": boolean;
|
|
1375
|
+
/** `1.17.1 - latest`
|
|
1376
|
+
* title system uses new set_title_text and set_title_subtitle packets */
|
|
1377
|
+
"titleUsesNewPackets": boolean;
|
|
1372
1378
|
}
|
|
1373
1379
|
|
|
1374
1380
|
type Object = { [key: string]: any }
|
|
@@ -855,5 +855,15 @@
|
|
|
855
855
|
"name": "noAckOnCreateSetSlotPacket",
|
|
856
856
|
"description": "Server does not send ack on creative_set_slot packets",
|
|
857
857
|
"versions": ["1.21.3", "latest"]
|
|
858
|
+
},
|
|
859
|
+
{
|
|
860
|
+
"name": "titleUsesLegacyPackets",
|
|
861
|
+
"description": "title system uses legacy title packets",
|
|
862
|
+
"versions": ["1.8", "1.17"]
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
"name": "titleUsesNewPackets",
|
|
866
|
+
"description": "title system uses new set_title_text and set_title_subtitle packets",
|
|
867
|
+
"versions": ["1.17.1", "latest"]
|
|
858
868
|
}
|
|
859
869
|
]
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 3.88.0
|
|
2
|
+
* [Add title features.](https://github.com/PrismarineJS/minecraft-data/commit/33ac15edaa7da6c4252b52fc8f3c05803437dd64) (thanks @rom1504)
|
|
3
|
+
|
|
1
4
|
## 3.87.0
|
|
2
5
|
* [Fix bug in packet experience.](https://github.com/PrismarineJS/minecraft-data/commit/a32f3880296467fbed19e5205b1d1d23331fffa8) (thanks @rom1504)
|
|
3
6
|
* [Add 25w20a to pc protocolVersions.json](https://github.com/PrismarineJS/minecraft-data/commit/9ba5dfb80f37415e2ac79c3dc15c5581d5738bfa) (thanks @github-actions[bot])
|