This commit is contained in:
paulevsGitch 2020-11-05 18:39:19 +03:00
parent c6a9e52019
commit 70f5e3e024
9 changed files with 12 additions and 16 deletions

View file

@ -85,7 +85,7 @@ public class BlockVine extends BlockBaseNotFull implements IRenderTypeable, Fert
protected boolean isSupport(BlockState state, WorldView world, BlockPos pos) {
BlockState up = world.getBlockState(pos.up());
return up.isOf(this) || up.isIn(BlockTags.LEAVES) || sideCoversSmallSquare(world, pos.up(), Direction.UP);
return up.isOf(this) || up.isIn(BlockTags.LEAVES) || sideCoversSmallSquare(world, pos.up(), Direction.DOWN);
}
@Override