Pallidium textures & block update

This commit is contained in:
paulevsGitch 2021-07-30 21:40:04 +03:00
parent aee9a88003
commit 757ed82817
35 changed files with 175 additions and 340 deletions

View file

@ -7,7 +7,7 @@ import net.minecraft.world.level.block.Block;
public interface PottablePlant {
boolean canPlantOn(Block block);
default boolean addToPot() {
default boolean canBePotted() {
return true;
}

View file

@ -1,3 +1,7 @@
package ru.betterend.interfaces;
public interface PottableTerrain {}
public interface PottableTerrain {
default boolean canBePotted() {
return true;
}
}