add y to exception message

This commit is contained in:
dfsek 2022-06-09 08:29:08 -07:00
parent 089710247b
commit 876e4b86ae

View File

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