remove column check

This commit is contained in:
dfsek
2022-06-09 13:04:05 -07:00
parent 876e4b86ae
commit 544b3767d2

View File

@@ -52,9 +52,6 @@ public class Column<T extends WritableWorld> {
}
public BlockState getBlock(int y) {
if(y >= max || y < min) {
throw new IllegalArgumentException("Y " + y + " out of range [" + min + ", " + max + ")");
}
return world.getBlockState(x, y, z);
}