Fixed Survives On handling

This commit is contained in:
Frank 2023-06-14 13:14:13 +02:00
parent 7c61b8c92e
commit afc3d1e795
27 changed files with 126 additions and 32 deletions

View file

@ -50,4 +50,9 @@ public class MurkweedBlock extends EndPlantBlock implements SurvivesOnShadowGras
public boolean isPathfindable(BlockState state, BlockGetter world, BlockPos pos, PathComputationType type) {
return false;
}
@Override
public boolean isTerrain(BlockState state) {
return SurvivesOnShadowGrass.super.isTerrain(state);
}
}