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