diff --git a/src/main/java/twilightforest/world/feature/TFGenCanopyMushroom.java b/src/main/java/twilightforest/world/feature/TFGenCanopyMushroom.java index 49c38d4aac..b2e8f3f2c8 100644 --- a/src/main/java/twilightforest/world/feature/TFGenCanopyMushroom.java +++ b/src/main/java/twilightforest/world/feature/TFGenCanopyMushroom.java @@ -87,10 +87,10 @@ private void buildBranch(World world, BlockPos pos, int height, double length, d if (src.getX() != dest.getX() || src.getZ() != dest.getZ()) { // branch TFGenerator.drawBresehnam(this, world, src, new BlockPos(dest.getX(), src.getY(), dest.getZ()), branchState); - TFGenerator.drawBresehnam(this, world, new BlockPos(dest.getX(), src.getY() + 1, dest.getZ()), dest.down(), treeState); + TFGenerator.drawBresehnam(this, world, new BlockPos(dest.getX(), src.getY() + 1, dest.getZ()), dest, treeState); } else { // trunk - TFGenerator.drawBresehnam(this, world, src, dest.down(), treeState); + TFGenerator.drawBresehnam(this, world, src, dest, treeState); } if (trunk) {