mirror of
https://github.com/PolyhedralDev/Terra.git
synced 2026-06-18 14:50:56 +00:00
add y to exception message
This commit is contained in:
+1
-1
@@ -53,7 +53,7 @@ public class Column<T extends WritableWorld> {
|
|||||||
|
|
||||||
public BlockState getBlock(int y) {
|
public BlockState getBlock(int y) {
|
||||||
if(y >= max || y < min) {
|
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);
|
return world.getBlockState(x, y, z);
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user