mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-12-22 16:57:40 +01:00
21w14a
This commit is contained in:
parent
b2586cf13b
commit
f7bd440a96
@ -7,7 +7,7 @@ plugins {
|
|||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "nl.matsv"
|
group = "nl.matsv"
|
||||||
version = "3.3.0-21w13a"
|
version = "3.3.0-21w14a"
|
||||||
description = "Allow older clients to join newer server versions."
|
description = "Allow older clients to join newer server versions."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
object Versions {
|
object Versions {
|
||||||
// ViaVersion
|
// ViaVersion
|
||||||
const val viaversion = "3.3.0-21w13a"
|
const val viaversion = "3.3.0-21w14a"
|
||||||
|
|
||||||
// Common
|
// Common
|
||||||
const val netty = "4.0.20.Final"
|
const val netty = "4.0.20.Final"
|
||||||
|
@ -169,6 +169,14 @@ public class EntityPackets1_17 extends EntityRewriter<Protocol1_16_4To1_17> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
rewriteParticle(particle);
|
rewriteParticle(particle);
|
||||||
|
} else if (type == MetaType1_14.Pose) {
|
||||||
|
// Goat LONG_JUMP added at 6
|
||||||
|
int pose = meta.getCastedValue();
|
||||||
|
if (pose == 6) {
|
||||||
|
meta.setValue(1); // FALL_FLYING
|
||||||
|
} else if (pose > 6) {
|
||||||
|
meta.setValue(pose - 1);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return meta;
|
return meta;
|
||||||
});
|
});
|
||||||
|
@ -678,10 +678,14 @@
|
|||||||
"minecraft:weathered_cut_copper_stairs": "minecraft:brick_stairs[",
|
"minecraft:weathered_cut_copper_stairs": "minecraft:brick_stairs[",
|
||||||
"minecraft:exposed_cut_copper_stairs": "minecraft:brick_stairs[",
|
"minecraft:exposed_cut_copper_stairs": "minecraft:brick_stairs[",
|
||||||
"minecraft:cut_copper_stairs": "minecraft:brick_stairs[",
|
"minecraft:cut_copper_stairs": "minecraft:brick_stairs[",
|
||||||
|
"minecraft:waxed_oxidized_cut_copper_stairs": "minecraft:brick_stairs[",
|
||||||
|
"minecraft:waxed_oxidized_cut_copper_slab": "minecraft:brick_slab[",
|
||||||
"minecraft:oxidized_cut_copper_slab": "minecraft:brick_slab[",
|
"minecraft:oxidized_cut_copper_slab": "minecraft:brick_slab[",
|
||||||
"minecraft:weathered_cut_copper_slab": "minecraft:brick_slab[",
|
"minecraft:weathered_cut_copper_slab": "minecraft:brick_slab[",
|
||||||
"minecraft:exposed_cut_copper_slab": "minecraft:brick_slab[",
|
"minecraft:exposed_cut_copper_slab": "minecraft:brick_slab[",
|
||||||
"minecraft:cut_copper_slab": "minecraft:brick_slab[",
|
"minecraft:cut_copper_slab": "minecraft:brick_slab[",
|
||||||
|
"minecraft:waxed_oxidized_copper": "minecraft:bricks",
|
||||||
|
"minecraft:waxed_oxidized_cut_copper": "minecraft:bricks",
|
||||||
"minecraft:waxed_copper_block": "minecraft:bricks",
|
"minecraft:waxed_copper_block": "minecraft:bricks",
|
||||||
"minecraft:waxed_weathered_copper": "minecraft:bricks",
|
"minecraft:waxed_weathered_copper": "minecraft:bricks",
|
||||||
"minecraft:waxed_exposed_copper": "minecraft:bricks",
|
"minecraft:waxed_exposed_copper": "minecraft:bricks",
|
||||||
@ -996,6 +1000,14 @@
|
|||||||
"id": "minecraft:brick_stairs",
|
"id": "minecraft:brick_stairs",
|
||||||
"name": "1.17 Oxidized Cut Copper Stairs"
|
"name": "1.17 Oxidized Cut Copper Stairs"
|
||||||
},
|
},
|
||||||
|
"minecraft:waxed_oxidized_cut_copper_stairs": {
|
||||||
|
"id": "minecraft:brick_stairs",
|
||||||
|
"name": "1.17 Waxed Oxidized Cut Copper Stairs"
|
||||||
|
},
|
||||||
|
"minecraft:waxed_oxidized_cut_copper_slab": {
|
||||||
|
"id": "minecraft:brick_slab",
|
||||||
|
"name": "1.17 Waxed Oxidized Cut Copper Slab"
|
||||||
|
},
|
||||||
"minecraft:cut_copper_slab": {
|
"minecraft:cut_copper_slab": {
|
||||||
"id": "minecraft:brick_slab",
|
"id": "minecraft:brick_slab",
|
||||||
"name": "1.17 Cut Copper Slab"
|
"name": "1.17 Cut Copper Slab"
|
||||||
@ -1020,6 +1032,14 @@
|
|||||||
"id": "minecraft:bricks",
|
"id": "minecraft:bricks",
|
||||||
"name": "1.17 Waxed Exposed Copper"
|
"name": "1.17 Waxed Exposed Copper"
|
||||||
},
|
},
|
||||||
|
"minecraft:waxed_oxidized_cut_copper": {
|
||||||
|
"id": "minecraft:bricks",
|
||||||
|
"name": "1.17 Waxed Oxidized Cut Copper"
|
||||||
|
},
|
||||||
|
"minecraft:waxed_oxidized_copper": {
|
||||||
|
"id": "minecraft:bricks",
|
||||||
|
"name": "1.17 Waxed Oxidized Copper"
|
||||||
|
},
|
||||||
"minecraft:waxed_weathered_copper": {
|
"minecraft:waxed_weathered_copper": {
|
||||||
"id": "minecraft:bricks",
|
"id": "minecraft:bricks",
|
||||||
"name": "1.17 Waxed Weathered Copper"
|
"name": "1.17 Waxed Weathered Copper"
|
||||||
@ -1184,6 +1204,18 @@
|
|||||||
"id": "minecraft:barrier",
|
"id": "minecraft:barrier",
|
||||||
"name": "1.17 Light"
|
"name": "1.17 Light"
|
||||||
},
|
},
|
||||||
|
"minecraft:raw_gold": {
|
||||||
|
"id": "minecraft:gold_ore",
|
||||||
|
"name": "1.17 Raw Gold"
|
||||||
|
},
|
||||||
|
"minecraft:raw_iron": {
|
||||||
|
"id": "minecraft:iron_ore",
|
||||||
|
"name": "1.17 Raw Iron"
|
||||||
|
},
|
||||||
|
"minecraft:raw_copper": {
|
||||||
|
"id": "minecraft:iron_ore",
|
||||||
|
"name": "1.17 Raw Copper"
|
||||||
|
},
|
||||||
"minecraft:goat_spawn_egg": {
|
"minecraft:goat_spawn_egg": {
|
||||||
"id": "minecraft:silverfish_spawn_egg",
|
"id": "minecraft:silverfish_spawn_egg",
|
||||||
"name": "1.17 Goat Spawn Egg"
|
"name": "1.17 Goat Spawn Egg"
|
||||||
|
Loading…
Reference in New Issue
Block a user