minecraft-data 3.88.0 → 3.89.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
@@ -1,5 +1,9 @@
1
1
  # History
2
2
 
3
+ ## 3.89.0
4
+
5
+ * update `minecraft-data`
6
+
3
7
  ## 3.88.0
4
8
 
5
9
  * update `minecraft-data`
package/index.d.ts CHANGED
@@ -1375,6 +1375,15 @@ declare namespace MinecraftData {
1375
1375
  /** `1.17.1 - latest`
1376
1376
  * title system uses new set_title_text and set_title_subtitle packets */
1377
1377
  "titleUsesNewPackets": boolean;
1378
+ /** `1.9 - latest`
1379
+ * the /playsound command uses resource location syntax */
1380
+ "playsoundUsesResourceLocation": boolean;
1381
+ /** `1.13 - latest`
1382
+ * the note block is named 'note_block' */
1383
+ "noteBlockNameIsNoteBlock": boolean;
1384
+ /** `1.8 - 1.8.9`
1385
+ * uses the old sound packet format */
1386
+ "usesOldSoundPacket": boolean;
1378
1387
  }
1379
1388
 
1380
1389
  type Object = { [key: string]: any }
@@ -865,5 +865,20 @@
865
865
  "name": "titleUsesNewPackets",
866
866
  "description": "title system uses new set_title_text and set_title_subtitle packets",
867
867
  "versions": ["1.17.1", "latest"]
868
+ },
869
+ {
870
+ "name": "playsoundUsesResourceLocation",
871
+ "description": "the /playsound command uses resource location syntax",
872
+ "versions": ["1.9", "latest"]
873
+ },
874
+ {
875
+ "name": "noteBlockNameIsNoteBlock",
876
+ "description": "the note block is named 'note_block'",
877
+ "versions": ["1.13", "latest"]
878
+ },
879
+ {
880
+ "name": "usesOldSoundPacket",
881
+ "description": "uses the old sound packet format",
882
+ "versions": ["1.8", "1.8.9"]
868
883
  }
869
884
  ]
@@ -1,3 +1,6 @@
1
+ ## 3.89.0
2
+ * [Add some sound features](https://github.com/PrismarineJS/minecraft-data/commit/431245e650d88863f867b156a6b418b56797658b) (thanks @rom1504)
3
+
1
4
  ## 3.88.0
2
5
  * [Add title features.](https://github.com/PrismarineJS/minecraft-data/commit/33ac15edaa7da6c4252b52fc8f3c05803437dd64) (thanks @rom1504)
3
6
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "minecraft-data",
3
- "version": "3.88.0",
3
+ "version": "3.89.0",
4
4
  "description": "Provide easy access to minecraft data in node.js",
5
5
  "main": "index.js",
6
6
  "tonicExampleFilename": "example.js",