Flower pots

This commit is contained in:
paulevsGitch 2021-07-11 18:16:55 +03:00
parent 13e5e9e088
commit e41fd592c7
14 changed files with 135 additions and 33 deletions

View file

@ -1,12 +1,12 @@
package ru.betterend.blocks.basis;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.state.BlockState;
import ru.bclib.api.TagAPI;
import ru.bclib.blocks.BasePlantBlock;
import ru.betterend.interfaces.PottablePlant;
public class EndPlantBlock extends BasePlantBlock implements PottablePlant {
public EndPlantBlock() {
this(false);
}
@ -31,4 +31,9 @@ public class EndPlantBlock extends BasePlantBlock implements PottablePlant {
protected boolean isTerrain(BlockState state) {
return state.is(TagAPI.END_GROUND);
}
@Override
public boolean canPlantOn(Block block) {
return isTerrain(block.defaultBlockState());
}
}