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