fix mushrooms on fabric

This commit is contained in:
dfsek
2021-03-14 16:30:27 -07:00
parent b3868bd750
commit 6ab8cd5b5b
4 changed files with 13 additions and 8 deletions
@@ -11,7 +11,9 @@ public interface Block extends Handle {
BlockState getState();
Block getRelative(BlockFace face);
default Block getRelative(BlockFace face) {
return getRelative(face, 1);
}
Block getRelative(BlockFace face, int len);
@@ -19,7 +21,9 @@ public interface Block extends Handle {
Location getLocation();
BlockType getType();
default BlockType getType() {
return getBlockData().getBlockType();
}
int getX();