Fixes, missing textures

This commit is contained in:
paulevsGitch 2020-11-27 18:54:20 +03:00
parent f4b20c2f4b
commit 6adbd2580d
25 changed files with 57 additions and 1 deletions

View file

@ -120,7 +120,10 @@ public class BlockVine extends BlockBaseNotFull implements IRenderTypeable, Fert
@Override
public boolean isFertilizable(BlockView world, BlockPos pos, BlockState state, boolean isClient) {
return true;
while (world.getBlockState(pos).getBlock() == this) {
pos = pos.down();
}
return world.getBlockState(pos).isAir();
}
@Override