Reimplement fractal trees

This commit is contained in:
dfsek
2020-12-14 22:51:45 -07:00
parent 0dc0742e81
commit 4d59c27a13
12 changed files with 125 additions and 8 deletions

View File

@@ -24,7 +24,7 @@ public class FabricBlockData implements BlockData {
@Override
public BlockData clone() {
try {
return (BlockData) super.clone();
return (FabricBlockData) super.clone();
} catch(CloneNotSupportedException e) {
throw new Error(e);
}