minecraft-data 3.59.2 → 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
@@ -1,5 +1,9 @@
1
1
  # History
2
2
 
3
+ ## 3.59.3
4
+
5
+ * update `minecraft-data`
6
+
3
7
  ## 3.59.2
4
8
 
5
9
  * update `minecraft-data`
package/index.d.ts CHANGED
@@ -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 {
@@ -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,6 @@
1
+ ## 3.59.3
2
+ * [pc: add `chatPacketsUseNbtComponents` feature for 1.20.3](https://github.com/PrismarineJS/minecraft-data/commit/42d7ecc1aa70dd0d7683aada09aea8c498d1a1a5) (thanks @extremeheat)
3
+
1
4
  ## 3.59.2
2
5
  * [Fix pc dimensionDataIsAvailable feature range](https://github.com/PrismarineJS/minecraft-data/commit/afd576f9b3cbedc4c2f7cbca1e849dc3760027b1) (thanks @extremeheat)
3
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.59.2",
3
+ "version": "3.59.3",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",