Pallidium textures & block update
This commit is contained in:
parent
aee9a88003
commit
757ed82817
35 changed files with 175 additions and 340 deletions
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
@ -1,3 +1,7 @@
|
|||
package ru.betterend.interfaces;
|
||||
|
||||
public interface PottableTerrain {}
|
||||
public interface PottableTerrain {
|
||||
default boolean canBePotted() {
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue