Skip to content

Commit 1bb1bcf

Browse files
committed
Mark farmland as solid.
Fixes #1236
1 parent 70069d7 commit 1bb1bcf

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

chunky/src/java/se/llbit/chunky/block/minecraft/Farmland.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@ public Farmland(int moisture) {
3131
this.model = new TexturedBlockModel(Texture.dirt, Texture.dirt, Texture.dirt, Texture.dirt,
3232
moisture >= 7 ? Texture.farmlandWet : Texture.farmlandDry, Texture.dirt);
3333
this.moisture = moisture;
34-
opaque = true;
34+
opaque = true;
35+
solid = true;
3536
// TODO farmland shouldn't be a full block
3637
}
3738

0 commit comments

Comments
 (0)