From 72a267757b8fbb8462f3c3f25001754af9d1f7c4 Mon Sep 17 00:00:00 2001 From: Lucas Wilson Date: Fri, 25 Aug 2023 14:26:16 -0600 Subject: [PATCH] Elytra support (#761) * Add elytra and firework related features * VarInt8 never existed and 1.13 was singular --- data/pc/common/features.json | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) diff --git a/data/pc/common/features.json b/data/pc/common/features.json index 63f1d0d49..e19f43ee9 100644 --- a/data/pc/common/features.json +++ b/data/pc/common/features.json @@ -12,6 +12,36 @@ "latest" ] }, + { + "name": "hasElytraFlying", + "description": "the elytra exists and players can fly with it", + "versions": ["1.9", "latest"] + }, + { + "name": "fireworkMetadataVarInt7", + "description": "firework attached entity metadata is at index 7 and is varint", + "versions": ["1.11", "1.13.2"] + }, + { + "name": "fireworkMetadataOptVarInt8", + "description": "firework attached entity metadata is at index 8 and is optvarint", + "versions": ["1.14", "1.16.5"] + }, + { + "name": "fireworkMetadataOptVarInt9", + "description": "firework attached entity metadata is at index 9 and is optvarint", + "versions": ["1.17", "latest"] + }, + { + "name": "fireworkNamePlural", + "description": "the firework entity used for elytra boosting is named fireworks_rocket", + "versions": ["1.11", "1.12.2"] + }, + { + "name": "fireworkNameSingular", + "description": "the firework entity used for elytra boosting is named firework_rocket", + "versions": ["1.13", "latest"] + }, { "name": "blockMetadata", "description": "block metadata is encoded in a separate metadata",