Block class rename
This commit is contained in:
parent
4b55bf30a8
commit
5f3547de8e
157 changed files with 748 additions and 756 deletions
19
src/main/java/ru/betterend/blocks/TerrainPlantBlock.java
Normal file
19
src/main/java/ru/betterend/blocks/TerrainPlantBlock.java
Normal file
|
@ -0,0 +1,19 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import net.minecraft.block.Block;
|
||||
import net.minecraft.block.BlockState;
|
||||
import ru.betterend.blocks.basis.EndPlantBlock;
|
||||
|
||||
public class TerrainPlantBlock extends EndPlantBlock {
|
||||
private final Block ground;
|
||||
|
||||
public TerrainPlantBlock(Block ground) {
|
||||
super(true);
|
||||
this.ground = ground;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isTerrain(BlockState state) {
|
||||
return state.isOf(ground);
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue