Small fixes

This commit is contained in:
paulevsGitch 2021-03-19 11:17:50 +03:00
parent af673baf1f
commit 0e077794fc
2 changed files with 6 additions and 2 deletions

View file

@ -15,11 +15,11 @@ public class TenaneaSaplingBlock extends FeatureSaplingBlock {
@Override
protected Feature<?> getFeature() {
return EndFeatures.TENANEA.getFeature();
return EndFeatures.LUCERNIA.getFeature();
}
@Override
public boolean canPlaceAt(BlockState state, WorldView world, BlockPos pos) {
return world.getBlockState(pos.down()).isOf(EndBlocks.PINK_MOSS);
return world.getBlockState(pos.down()).isOf(EndBlocks.RUTISCUS);
}
}