From 1b9380edb159721bef2342d4214b0ebb3128c812 Mon Sep 17 00:00:00 2001 From: extremeheat Date: Mon, 4 Sep 2023 17:13:25 -0400 Subject: [PATCH] add features for prismarine chunk (#763) * update bedrock features * update pc features * Update features.json --- data/bedrock/common/features.json | 10 ++++++++++ data/pc/common/features.json | 17 ++++++++++++++++- 2 files changed, 26 insertions(+), 1 deletion(-) diff --git a/data/bedrock/common/features.json b/data/bedrock/common/features.json index 9dd9963c0..22e28c7cd 100644 --- a/data/bedrock/common/features.json +++ b/data/bedrock/common/features.json @@ -1,4 +1,14 @@ [ + { + "name": "smallWorld", + "description": "world height is 128 blocks", + "version": "0.14.3" + }, + { + "name": "usesPalettedChunks", + "description": "the chunk format uses local palettes", + "versions": ["1.16_major", "latest"] + }, { "name": "newRecipeSchema", "description": "New recipe schema", diff --git a/data/pc/common/features.json b/data/pc/common/features.json index e19f43ee9..eb4a18d9d 100644 --- a/data/pc/common/features.json +++ b/data/pc/common/features.json @@ -1,4 +1,9 @@ [ + { + "name": "usesPalettedChunks", + "description": "the chunk format uses local palettes", + "versions": ["1.9", "latest"] + }, { "name": "mobSpawner", "description": "spawner is called mob_spawner", @@ -534,13 +539,18 @@ { "name": "lightSentSeparately", "description": "chunk light data is sent in a separate packet", - "versions": ["1.14", "1.16"] + "versions": ["1.14", "latest"] }, { "name": "difficultySentSeparately", "description": "game difficulty is sent separately from the login packet", "versions": ["1.14", "1.16"] }, + { + "name": "biomesSentSeparately", + "description": "biomes sent in own packet", + "versions": ["1.15", "1.17_major"] + }, { "name": "acknowledgePlayerDigging", "description": "player digging packets should be responded to", @@ -766,5 +776,10 @@ "name": "explicitMaxDurability", "description": "Items with maximum durability have explicit NBT data Damage:0", "versions": ["1.15_major", "latest"] + }, + { + "name": "newLightingDataFormat", + "description": "in 1.17, light encoding changed to handle new world height", + "versions": ["1.17", "latest"] } ]