summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/ChunkDef.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/ChunkDef.h b/src/ChunkDef.h
index fcda9b5a6..c69f1fdf3 100644
--- a/src/ChunkDef.h
+++ b/src/ChunkDef.h
@@ -115,6 +115,12 @@ public:
return Vector3i(a_RelBlockPosition.x + a_ChunkX * Width, a_RelBlockPosition.y, a_RelBlockPosition.z + a_ChunkZ * Width);
}
+ /** Validates a height-coordinate. Returns false if height-coordiante is out of height bounds */
+ inline static bool IsValidHeight(int a_Height)
+ {
+ return ((a_Height >= 0) && (a_Height < Height));
+ }
+
/** Converts absolute block coords to chunk coords: */
inline static void BlockToChunk(int a_X, int a_Z, int & a_ChunkX, int & a_ChunkZ)