This commit is contained in:
KennyTV 2021-05-19 18:28:49 +02:00
parent 16ba5aa4f9
commit c172091944
No known key found for this signature in database
GPG Key ID: 6BE3B555EBC5982B
6 changed files with 8 additions and 5 deletions

View File

@ -76,7 +76,7 @@ public class ProtocolVersion {
public static final ProtocolVersion v1_16_2 = register(751, "1.16.2"); public static final ProtocolVersion v1_16_2 = register(751, "1.16.2");
public static final ProtocolVersion v1_16_3 = register(753, "1.16.3"); public static final ProtocolVersion v1_16_3 = register(753, "1.16.3");
public static final ProtocolVersion v1_16_4 = register(754, "1.16.4/5", new VersionRange("1.16", 4, 5)); public static final ProtocolVersion v1_16_4 = register(754, "1.16.4/5", new VersionRange("1.16", 4, 5));
public static final ProtocolVersion v1_17 = register(755, 27, "1.17"); public static final ProtocolVersion v1_17 = register(755, 28, "1.17");
public static final ProtocolVersion unknown = register(-1, "UNKNOWN"); public static final ProtocolVersion unknown = register(-1, "UNKNOWN");
public static ProtocolVersion register(int version, String name) { public static ProtocolVersion register(int version, String name) {

View File

@ -8,7 +8,7 @@ plugins {
allprojects { allprojects {
group = "com.viaversion" group = "com.viaversion"
version = "4.0.0-21w19a-SNAPSHOT" version = "4.0.0-21w20a-SNAPSHOT"
description = "Allow newer clients to join older server versions." description = "Allow newer clients to join older server versions."
} }

View File

@ -218,7 +218,7 @@ public class Protocol1_17To1_16_4 extends AbstractProtocol<ClientboundPackets1_1
"minecraft:cave_vines", "minecraft:moss_replaceable", "minecraft:deepslate_ore_replaceables", "minecraft:lush_ground_replaceable", "minecraft:cave_vines", "minecraft:moss_replaceable", "minecraft:deepslate_ore_replaceables", "minecraft:lush_ground_replaceable",
"minecraft:diamond_ores", "minecraft:iron_ores", "minecraft:lapis_ores", "minecraft:redstone_ores", "minecraft:stone_ore_replaceables", "minecraft:diamond_ores", "minecraft:iron_ores", "minecraft:lapis_ores", "minecraft:redstone_ores", "minecraft:stone_ore_replaceables",
"minecraft:coal_ores", "minecraft:copper_ores", "minecraft:emerald_ores", "minecraft:dirt", "minecraft:snow", "minecraft:small_dripleaf_placeable", "minecraft:coal_ores", "minecraft:copper_ores", "minecraft:emerald_ores", "minecraft:dirt", "minecraft:snow", "minecraft:small_dripleaf_placeable",
"minecraft:needs_stone_tool", "minecraft:needs_diamond_tool", "minecraft:needs_iron_tool"); "minecraft:needs_stone_tool", "minecraft:needs_diamond_tool", "minecraft:needs_iron_tool", "minecraft:features_cannot_replace");
tagRewriter.addEmptyTags(RegistryType.ENTITY, "minecraft:powder_snow_walkable_mobs", "minecraft:axolotl_always_hostiles", "minecraft:axolotl_tempted_hostiles", tagRewriter.addEmptyTags(RegistryType.ENTITY, "minecraft:powder_snow_walkable_mobs", "minecraft:axolotl_always_hostiles", "minecraft:axolotl_tempted_hostiles",
"minecraft:axolotl_hunt_targets", "minecraft:freeze_hurts_extra_types", "minecraft:freeze_immune_entity_types"); "minecraft:axolotl_hunt_targets", "minecraft:freeze_hurts_extra_types", "minecraft:freeze_immune_entity_types");

View File

@ -23362,7 +23362,7 @@
"entity.stray.step", "entity.stray.step",
"block.sweet_berry_bush.break", "block.sweet_berry_bush.break",
"block.sweet_berry_bush.place", "block.sweet_berry_bush.place",
"item.sweet_berries.pick_from_bush", "block.sweet_berry_bush.pick_berries",
"enchant.thorns.hit", "enchant.thorns.hit",
"entity.tnt.primed", "entity.tnt.primed",
"item.totem.use", "item.totem.use",

View File

@ -2,6 +2,9 @@
"blocks": { "blocks": {
"498": "dirt_path" "498": "dirt_path"
}, },
"sounds": {
"item.sweet_berries.pick_from_bush": "block.sweet_berry_bush.pick_berries"
},
"blockstates": { "blockstates": {
"1305": "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false]", "1305": "minecraft:powered_rail[powered=true,shape=north_south,waterlogged=false]",
"1306": "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false]", "1306": "minecraft:powered_rail[powered=true,shape=east_west,waterlogged=false]",

View File

@ -1,5 +1,5 @@
distributionBase=GRADLE_USER_HOME distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.1-bin.zip distributionUrl=https\://services.gradle.org/distributions/gradle-7.0.2-bin.zip
zipStoreBase=GRADLE_USER_HOME zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists zipStorePath=wrapper/dists