minecraft-data 3.96.0 → 3.97.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
|
@@ -1344,13 +1344,13 @@ declare namespace MinecraftData {
|
|
|
1344
1344
|
"saveDurabilityAsDamage": boolean;
|
|
1345
1345
|
/**
|
|
1346
1346
|
* what the nbt key for enchants is */
|
|
1347
|
-
"nbtNameForEnchant": "
|
|
1347
|
+
"nbtNameForEnchant": "Enchantments" | "ench";
|
|
1348
1348
|
/** `1.8_major - latest`
|
|
1349
1349
|
* Enchanted books store enchantment data in a separate NBT tag called StoredEnchantments */
|
|
1350
1350
|
"booksUseStoredEnchantments": boolean;
|
|
1351
1351
|
/**
|
|
1352
1352
|
* type of value that stores enchant lvl in the nbt */
|
|
1353
|
-
"typeOfValueForEnchantLevel": "short";
|
|
1353
|
+
"typeOfValueForEnchantLevel": "string" | "short";
|
|
1354
1354
|
/**
|
|
1355
1355
|
* where the durability is saved in nbt */
|
|
1356
1356
|
"whereDurabilityIsSerialized": "Damage" | "metadata";
|
|
@@ -650,13 +650,9 @@
|
|
|
650
650
|
"name": "nbtNameForEnchant",
|
|
651
651
|
"description": "what the nbt key for enchants is",
|
|
652
652
|
"values": [
|
|
653
|
-
{
|
|
654
|
-
"value": "componentEnchantments",
|
|
655
|
-
"versions": ["1.20.5", "latest"]
|
|
656
|
-
},
|
|
657
653
|
{
|
|
658
654
|
"value": "Enchantments",
|
|
659
|
-
"versions": ["1.13_major", "
|
|
655
|
+
"versions": ["1.13_major", "latest"]
|
|
660
656
|
},
|
|
661
657
|
{
|
|
662
658
|
"value": "ench",
|
|
@@ -673,9 +669,13 @@
|
|
|
673
669
|
"name": "typeOfValueForEnchantLevel",
|
|
674
670
|
"description": "type of value that stores enchant lvl in the nbt",
|
|
675
671
|
"values": [
|
|
672
|
+
{
|
|
673
|
+
"value": "string",
|
|
674
|
+
"versions": ["1.13_major", "latest"]
|
|
675
|
+
},
|
|
676
676
|
{
|
|
677
677
|
"value": "short",
|
|
678
|
-
"versions": ["1.8_major", "
|
|
678
|
+
"versions": ["1.8_major", "1.12_major"]
|
|
679
679
|
}
|
|
680
680
|
]
|
|
681
681
|
},
|
|
@@ -1,3 +1,6 @@
|
|
|
1
|
+
## 3.97.0
|
|
2
|
+
* [Revert "Fix pc "nbtNameForEnchant" feature versions (#986)"](https://github.com/PrismarineJS/minecraft-data/commit/34a88b5f770eb9f2b3d6a4ae8a5ec6a71b235327) (thanks @rom1504)
|
|
3
|
+
|
|
1
4
|
## 3.96.0
|
|
2
5
|
* [Update proto.yml for Minecraft 1.21.6 (#1039)](https://github.com/PrismarineJS/minecraft-data/commit/09821c14cc7ced37ac2e2554bc6bc0f84c4390c7) (thanks @rom1504)
|
|
3
6
|
* [Enforce no additional properties for enchantments (#1053)](https://github.com/PrismarineJS/minecraft-data/commit/c7509e277a28753663e5f48433f146eb17773f0d) (thanks @ItsDrike)
|