End lily recipes
This commit is contained in:
parent
2d1fe18781
commit
3f9e524b54
33 changed files with 221 additions and 44 deletions
16
src/main/java/ru/betterend/blocks/BlockChorusGrass.java
Normal file
16
src/main/java/ru/betterend/blocks/BlockChorusGrass.java
Normal file
|
@ -0,0 +1,16 @@
|
|||
package ru.betterend.blocks;
|
||||
|
||||
import net.minecraft.block.BlockState;
|
||||
import ru.betterend.blocks.basis.BlockPlant;
|
||||
import ru.betterend.registry.BlockRegistry;
|
||||
|
||||
public class BlockChorusGrass extends BlockPlant {
|
||||
public BlockChorusGrass() {
|
||||
super(true);
|
||||
}
|
||||
|
||||
@Override
|
||||
protected boolean isTerrain(BlockState state) {
|
||||
return state.getBlock() == BlockRegistry.CHORUS_NYLIUM;
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue