diff --git a/server/src/main/java/server/world/Converter.java b/server/src/main/java/server/world/Converter.java index c4ca9779..a584b7af 100644 --- a/server/src/main/java/server/world/Converter.java +++ b/server/src/main/java/server/world/Converter.java @@ -450,37 +450,37 @@ public abstract class Converter { mapBlock(Blocks.jungle_log.getState().withProperty(BlockLog.AXIS, Axis.X), 17, 7); mapBlock(Blocks.jungle_log.getState().withProperty(BlockLog.AXIS, Axis.Z), 17, 11); mapBlock(Blocks.oak_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 18); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, false), 18); mapBlock(Blocks.oak_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 18, 4); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, true), 18, 4); mapBlock(Blocks.oak_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 18, 8); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, false), 18, 8); mapBlock(Blocks.oak_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 18, 12); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, true), 18, 12); mapBlock(Blocks.spruce_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 18, 1); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, false), 18, 1); mapBlock(Blocks.spruce_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 18, 5); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, true), 18, 5); mapBlock(Blocks.spruce_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 18, 9); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, false), 18, 9); mapBlock(Blocks.spruce_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 18, 13); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, true), 18, 13); mapBlock(Blocks.birch_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 18, 2); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, false), 18, 2); mapBlock(Blocks.birch_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 18, 6); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, true), 18, 6); mapBlock(Blocks.birch_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 18, 10); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, false), 18, 10); mapBlock(Blocks.birch_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 18, 14); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, true), 18, 14); mapBlock(Blocks.jungle_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 18, 3); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, false), 18, 3); mapBlock(Blocks.jungle_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 18, 7); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, true), 18, 7); mapBlock(Blocks.jungle_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 18, 11); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, false), 18, 11); mapBlock(Blocks.jungle_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 18, 15); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, true), 18, 15); mapBlock(Blocks.sponge, 19); mapBlock(Blocks.glass, 20); mapBlock(Blocks.lapis_ore, 21); @@ -1358,21 +1358,21 @@ public abstract class Converter { } }, 160); mapBlock(Blocks.acacia_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 161); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, false), 161); mapBlock(Blocks.acacia_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 161, 4); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, true), 161, 4); mapBlock(Blocks.acacia_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 161, 8); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, false), 161, 8); mapBlock(Blocks.acacia_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 161, 12); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, true), 161, 12); mapBlock(Blocks.dark_oak_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 161, 1); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, false), 161, 1); mapBlock(Blocks.dark_oak_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, false), 161, 5); + .withProperty(BlockLeaves.DECAY, false).withProperty(BlockLeaves.BUSH, true), 161, 5); mapBlock(Blocks.dark_oak_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 161, 9); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, false), 161, 9); mapBlock(Blocks.dark_oak_leaves_spring.getState() - .withProperty(BlockLeaves.DECAY, true), 161, 13); + .withProperty(BlockLeaves.DECAY, true).withProperty(BlockLeaves.BUSH, true), 161, 13); mapBlock(Blocks.acacia_log.getState().withProperty(BlockLog.AXIS, Axis.Y), 162); mapBlock(Blocks.acacia_log.getState().withProperty(BlockLog.AXIS, Axis.X), 162, 4); mapBlock(Blocks.acacia_log.getState().withProperty(BlockLog.AXIS, Axis.Z), 162, 8);