mirror of
https://github.com/ViaVersion/ViaBackwards.git
synced 2024-12-31 18:28:18 +01:00
21w17a
This commit is contained in:
parent
687e1f4f43
commit
93e99bc1ef
@ -8,7 +8,7 @@ plugins {
|
|||||||
|
|
||||||
allprojects {
|
allprojects {
|
||||||
group = "com.viaversion"
|
group = "com.viaversion"
|
||||||
version = "4.0.0-21w16a"
|
version = "4.0.0-21w17a"
|
||||||
description = "Allow older clients to join newer server versions."
|
description = "Allow older clients to join newer server versions."
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -245,6 +245,11 @@ public abstract class EntityRewriterBase<T extends BackwardsProtocol> extends Re
|
|||||||
registerExtraTracker(packetType, entityType, Type.VAR_INT);
|
registerExtraTracker(packetType, entityType, Type.VAR_INT);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Sub 1.17 method for entity remove packets.
|
||||||
|
*
|
||||||
|
* @param packetType remove entities packet type
|
||||||
|
*/
|
||||||
protected void registerEntityDestroy(ClientboundPacketType packetType) {
|
protected void registerEntityDestroy(ClientboundPacketType packetType) {
|
||||||
getProtocol().registerClientbound(packetType, new PacketRemapper() {
|
getProtocol().registerClientbound(packetType, new PacketRemapper() {
|
||||||
@Override
|
@Override
|
||||||
@ -260,6 +265,24 @@ public abstract class EntityRewriterBase<T extends BackwardsProtocol> extends Re
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 1.17+ method for entity remove packets.
|
||||||
|
*
|
||||||
|
* @param packetType remove entities packet type
|
||||||
|
*/
|
||||||
|
protected void registerRemoveEntity(ClientboundPacketType packetType) {
|
||||||
|
protocol.registerClientbound(packetType, new PacketRemapper() {
|
||||||
|
@Override
|
||||||
|
public void registerMap() {
|
||||||
|
map(Type.VAR_INT); // 0 - Entity ids
|
||||||
|
handler(wrapper -> {
|
||||||
|
int entity = wrapper.get(Type.VAR_INT, 0);
|
||||||
|
getEntityTracker(wrapper.user()).removeEntity(entity);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
// ONLY TRACKS, DOESN'T REWRITE IDS
|
// ONLY TRACKS, DOESN'T REWRITE IDS
|
||||||
protected PacketHandler getTrackerHandler(Type intType, int typeIndex) {
|
protected PacketHandler getTrackerHandler(Type intType, int typeIndex) {
|
||||||
return wrapper -> {
|
return wrapper -> {
|
||||||
|
@ -54,8 +54,22 @@ public class EntityPackets1_17 extends EntityRewriter<Protocol1_16_4To1_17> {
|
|||||||
registerExtraTracker(ClientboundPackets1_17.SPAWN_EXPERIENCE_ORB, Entity1_16_2Types.EXPERIENCE_ORB);
|
registerExtraTracker(ClientboundPackets1_17.SPAWN_EXPERIENCE_ORB, Entity1_16_2Types.EXPERIENCE_ORB);
|
||||||
registerExtraTracker(ClientboundPackets1_17.SPAWN_PAINTING, Entity1_16_2Types.PAINTING);
|
registerExtraTracker(ClientboundPackets1_17.SPAWN_PAINTING, Entity1_16_2Types.PAINTING);
|
||||||
registerExtraTracker(ClientboundPackets1_17.SPAWN_PLAYER, Entity1_16_2Types.PLAYER);
|
registerExtraTracker(ClientboundPackets1_17.SPAWN_PLAYER, Entity1_16_2Types.PLAYER);
|
||||||
registerEntityDestroy(ClientboundPackets1_17.DESTROY_ENTITIES);
|
|
||||||
registerMetadataRewriter(ClientboundPackets1_17.ENTITY_METADATA, Types1_17.METADATA_LIST, Types1_14.METADATA_LIST);
|
registerMetadataRewriter(ClientboundPackets1_17.ENTITY_METADATA, Types1_17.METADATA_LIST, Types1_14.METADATA_LIST);
|
||||||
|
|
||||||
|
protocol.registerClientbound(ClientboundPackets1_17.REMOVE_ENTITY, ClientboundPackets1_16_2.DESTROY_ENTITIES, new PacketRemapper() {
|
||||||
|
@Override
|
||||||
|
public void registerMap() {
|
||||||
|
handler(wrapper -> {
|
||||||
|
int entityId = wrapper.read(Type.VAR_INT);
|
||||||
|
getEntityTracker(wrapper.user()).removeEntity(entityId);
|
||||||
|
|
||||||
|
// Write into single value array
|
||||||
|
int[] array = {entityId};
|
||||||
|
wrapper.write(Type.VAR_INT_ARRAY_PRIMITIVE, array);
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
protocol.registerClientbound(ClientboundPackets1_17.JOIN_GAME, new PacketRemapper() {
|
protocol.registerClientbound(ClientboundPackets1_17.JOIN_GAME, new PacketRemapper() {
|
||||||
@Override
|
@Override
|
||||||
public void registerMap() {
|
public void registerMap() {
|
||||||
@ -97,6 +111,7 @@ public class EntityPackets1_17 extends EntityRewriter<Protocol1_16_4To1_17> {
|
|||||||
});
|
});
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
protocol.registerClientbound(ClientboundPackets1_17.RESPAWN, new PacketRemapper() {
|
protocol.registerClientbound(ClientboundPackets1_17.RESPAWN, new PacketRemapper() {
|
||||||
@Override
|
@Override
|
||||||
public void registerMap() {
|
public void registerMap() {
|
||||||
@ -188,7 +203,7 @@ public class EntityPackets1_17 extends EntityRewriter<Protocol1_16_4To1_17> {
|
|||||||
|
|
||||||
registerMetaHandler().filter(Entity1_17Types.GLOW_SQUID, 16).removed();
|
registerMetaHandler().filter(Entity1_17Types.GLOW_SQUID, 16).removed();
|
||||||
|
|
||||||
registerMetaHandler().filter(Entity1_17Types.GOAT, 16).removed();
|
registerMetaHandler().filter(Entity1_17Types.GOAT, 17).removed();
|
||||||
|
|
||||||
mapEntity(Entity1_17Types.AXOLOTL, Entity1_17Types.TROPICAL_FISH).jsonName("Axolotl");
|
mapEntity(Entity1_17Types.AXOLOTL, Entity1_17Types.TROPICAL_FISH).jsonName("Axolotl");
|
||||||
mapEntity(Entity1_17Types.GOAT, Entity1_17Types.SHEEP).jsonName("Goat");
|
mapEntity(Entity1_17Types.GOAT, Entity1_17Types.SHEEP).jsonName("Goat");
|
||||||
|
@ -437,102 +437,54 @@
|
|||||||
"minecraft:black_candle_cake[lit=false]": "minecraft:cake[bites=0]",
|
"minecraft:black_candle_cake[lit=false]": "minecraft:cake[bites=0]",
|
||||||
"minecraft:amethyst_block": "minecraft:purpur_block",
|
"minecraft:amethyst_block": "minecraft:purpur_block",
|
||||||
"minecraft:budding_amethyst": "minecraft:purpur_pillar[axis=y]",
|
"minecraft:budding_amethyst": "minecraft:purpur_pillar[axis=y]",
|
||||||
"minecraft:amethyst_cluster[facing=north,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
"minecraft:amethyst_cluster[facing=north,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=north,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
"minecraft:amethyst_cluster[facing=north,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=north,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
"minecraft:amethyst_cluster[facing=east,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=north,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
"minecraft:amethyst_cluster[facing=east,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=east,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
"minecraft:amethyst_cluster[facing=south,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=east,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
"minecraft:amethyst_cluster[facing=south,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=east,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
"minecraft:amethyst_cluster[facing=west,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=east,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
"minecraft:amethyst_cluster[facing=west,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=south,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
"minecraft:amethyst_cluster[facing=up,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=south,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
"minecraft:amethyst_cluster[facing=up,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=south,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
"minecraft:amethyst_cluster[facing=down,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
||||||
"minecraft:amethyst_cluster[facing=south,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
"minecraft:amethyst_cluster[facing=down,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
||||||
"minecraft:amethyst_cluster[facing=west,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
"minecraft:large_amethyst_bud[facing=north,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=west,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
"minecraft:large_amethyst_bud[facing=north,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=west,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
"minecraft:large_amethyst_bud[facing=east,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=west,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
"minecraft:large_amethyst_bud[facing=east,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=up,lit=true,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
"minecraft:large_amethyst_bud[facing=south,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=up,lit=true,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
"minecraft:large_amethyst_bud[facing=south,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=up,lit=false,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
"minecraft:large_amethyst_bud[facing=west,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=up,lit=false,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
"minecraft:large_amethyst_bud[facing=west,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=down,lit=true,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
"minecraft:large_amethyst_bud[facing=up,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
||||||
"minecraft:amethyst_cluster[facing=down,lit=true,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
"minecraft:large_amethyst_bud[facing=up,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
||||||
"minecraft:amethyst_cluster[facing=down,lit=false,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
"minecraft:large_amethyst_bud[facing=down,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
||||||
"minecraft:amethyst_cluster[facing=down,lit=false,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
"minecraft:large_amethyst_bud[facing=down,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
||||||
"minecraft:large_amethyst_bud[facing=north,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
"minecraft:medium_amethyst_bud[facing=north,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=north,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
"minecraft:medium_amethyst_bud[facing=north,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=north,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
"minecraft:medium_amethyst_bud[facing=east,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=north,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
"minecraft:medium_amethyst_bud[facing=east,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=east,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
"minecraft:medium_amethyst_bud[facing=south,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=east,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
"minecraft:medium_amethyst_bud[facing=south,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=east,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
"minecraft:medium_amethyst_bud[facing=west,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=east,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
"minecraft:medium_amethyst_bud[facing=west,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=south,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
"minecraft:medium_amethyst_bud[facing=up,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=south,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
"minecraft:medium_amethyst_bud[facing=up,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=south,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
"minecraft:medium_amethyst_bud[facing=down,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
||||||
"minecraft:large_amethyst_bud[facing=south,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
"minecraft:medium_amethyst_bud[facing=down,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
||||||
"minecraft:large_amethyst_bud[facing=west,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
"minecraft:small_amethyst_bud[facing=north,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=west,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
"minecraft:small_amethyst_bud[facing=north,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=west,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
"minecraft:small_amethyst_bud[facing=east,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=west,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
"minecraft:small_amethyst_bud[facing=east,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=up,lit=true,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
"minecraft:small_amethyst_bud[facing=south,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=up,lit=true,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
"minecraft:small_amethyst_bud[facing=south,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=up,lit=false,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
"minecraft:small_amethyst_bud[facing=west,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=up,lit=false,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
"minecraft:small_amethyst_bud[facing=west,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=down,lit=true,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
"minecraft:small_amethyst_bud[facing=up,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
||||||
"minecraft:large_amethyst_bud[facing=down,lit=true,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
"minecraft:small_amethyst_bud[facing=up,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
||||||
"minecraft:large_amethyst_bud[facing=down,lit=false,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
"minecraft:small_amethyst_bud[facing=down,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
||||||
"minecraft:large_amethyst_bud[facing=down,lit=false,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
"minecraft:small_amethyst_bud[facing=down,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
||||||
"minecraft:medium_amethyst_bud[facing=north,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=north,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=north,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=north,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=east,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=east,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=east,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=east,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=south,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=south,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=south,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=south,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=west,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=west,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=west,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=west,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=up,lit=true,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=up,lit=true,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=up,lit=false,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=up,lit=false,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=down,lit=true,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=down,lit=true,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=down,lit=false,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
|
||||||
"minecraft:medium_amethyst_bud[facing=down,lit=false,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=north,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=north,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=north,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=north,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=north,waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=east,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=east,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=east,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=east,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=east,waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=south,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=south,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=south,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=south,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=south,waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=west,lit=true,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=west,lit=true,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=west,lit=false,waterlogged=true]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=west,lit=false,waterlogged=false]": "minecraft:bubble_coral_wall_fan[facing=west,waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=up,lit=true,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=up,lit=true,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=up,lit=false,waterlogged=true]": "minecraft:bubble_coral_fan[waterlogged=true]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=up,lit=false,waterlogged=false]": "minecraft:bubble_coral_fan[waterlogged=false]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=down,lit=true,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=down,lit=true,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=down,lit=false,waterlogged=true]": "minecraft:weeping_vines[age=0]",
|
|
||||||
"minecraft:small_amethyst_bud[facing=down,lit=false,waterlogged=false]": "minecraft:weeping_vines[age=0]",
|
|
||||||
"minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=true]": "minecraft:end_rod[facing=up]",
|
"minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=true]": "minecraft:end_rod[facing=up]",
|
||||||
"minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false]": "minecraft:end_rod[facing=up]",
|
"minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=up,waterlogged=false]": "minecraft:end_rod[facing=up]",
|
||||||
"minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true]": "minecraft:end_rod[facing=down]",
|
"minecraft:pointed_dripstone[thickness=tip_merge,vertical_direction=down,waterlogged=true]": "minecraft:end_rod[facing=down]",
|
||||||
|
@ -3,7 +3,7 @@ metadata.format.version = "1.0"
|
|||||||
[versions]
|
[versions]
|
||||||
|
|
||||||
# ViaVersion
|
# ViaVersion
|
||||||
viaver = "4.0.0-21w16a"
|
viaver = "4.0.0-21w17a"
|
||||||
|
|
||||||
# Common provided
|
# Common provided
|
||||||
netty = "4.0.20.Final"
|
netty = "4.0.20.Final"
|
||||||
|
Loading…
Reference in New Issue
Block a user