minecraft-data 2.117.1 → 2.118.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
|
@@ -359,5 +359,82 @@
|
|
|
359
359
|
"version": "1.8_major"
|
|
360
360
|
}
|
|
361
361
|
]
|
|
362
|
+
},
|
|
363
|
+
{
|
|
364
|
+
"name": "itemSerializationWillOnlyUsePresent",
|
|
365
|
+
"description": "item serialization in [even] newer versions uses present field [exclusively] to show nullability rather than sending blockId as -1",
|
|
366
|
+
"versions": ["1.14_major", "latest"]
|
|
367
|
+
},
|
|
368
|
+
{
|
|
369
|
+
"name": "itemSerializationAllowsPresent",
|
|
370
|
+
"description": "item serialization in newer versions uses present field to show nullability rather or sending blockId as -1 can be used",
|
|
371
|
+
"versions": ["1.13_major", "latest"]
|
|
372
|
+
},
|
|
373
|
+
{
|
|
374
|
+
"name": "itemSerializationUsesBlockId",
|
|
375
|
+
"description": "item serialization in older versions uses blockId field to show nullability by setting blockId to -1",
|
|
376
|
+
"versions": ["1.8_major", "1.12_major"]
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"name": "saveDurabilityAsDamage",
|
|
380
|
+
"description": "in newer versions, an nbt key called 'Damage' is used to store durability",
|
|
381
|
+
"versions": ["1.13_major", "latest"]
|
|
382
|
+
},
|
|
383
|
+
{
|
|
384
|
+
"name": "nbtNameForEnchant",
|
|
385
|
+
"description": "what the nbt key for enchants is",
|
|
386
|
+
"values": [
|
|
387
|
+
{
|
|
388
|
+
"value": "Enchantments",
|
|
389
|
+
"versions": ["1.13_major", "latest"]
|
|
390
|
+
},
|
|
391
|
+
{
|
|
392
|
+
"value": "ench",
|
|
393
|
+
"versions": ["1.8_major", "1.12_major"]
|
|
394
|
+
}
|
|
395
|
+
]
|
|
396
|
+
},
|
|
397
|
+
{
|
|
398
|
+
"name": "typeOfValueForEnchantLevel",
|
|
399
|
+
"description": "type of value that stores enchant lvl in the nbt",
|
|
400
|
+
"values": [
|
|
401
|
+
{
|
|
402
|
+
"value": "string",
|
|
403
|
+
"versions": ["1.13_major", "latest"]
|
|
404
|
+
},
|
|
405
|
+
{
|
|
406
|
+
"value": "short",
|
|
407
|
+
"versions": ["1.8_major", "1.12_major"]
|
|
408
|
+
}
|
|
409
|
+
]
|
|
410
|
+
},
|
|
411
|
+
{
|
|
412
|
+
"name": "whereDurabilityIsSerialized",
|
|
413
|
+
"description": "where the durability is saved in nbt",
|
|
414
|
+
"values": [
|
|
415
|
+
{
|
|
416
|
+
"value": "Damage",
|
|
417
|
+
"versions": ["1.13_major", "latest"]
|
|
418
|
+
},
|
|
419
|
+
{
|
|
420
|
+
"value": "metadata",
|
|
421
|
+
"versions": ["1.8_major", "1.12_major"]
|
|
422
|
+
}
|
|
423
|
+
]
|
|
424
|
+
},
|
|
425
|
+
{
|
|
426
|
+
"name": "spawnEggsUseInternalIdInNbt",
|
|
427
|
+
"description": "in older versions, spawn eggs have a field in their nbt called 'internalId' which tells what entity they will spawn",
|
|
428
|
+
"versions": ["1.8_major", "1.8_major"]
|
|
429
|
+
},
|
|
430
|
+
{
|
|
431
|
+
"name": "spawnEggsUseEntityTagInNbt",
|
|
432
|
+
"description": "in older versions, spawn eggs have a key in their nbt called EntityTag which is an object with a field called id, which is an identifier like 'minecraft:cow' that tells the client what mob this egg will spawn",
|
|
433
|
+
"versions": ["1.9_major", "1.12_major"]
|
|
434
|
+
},
|
|
435
|
+
{
|
|
436
|
+
"name": "spawnEggsHaveSpawnedEntityInName",
|
|
437
|
+
"description": "in newer versions, spawn eggs have the entity they spawn in their name, ex: 'squid_spawn_egg'",
|
|
438
|
+
"versions": ["1.13_major", "latest"]
|
|
362
439
|
}
|
|
363
440
|
]
|