summaryrefslogtreecommitdiff
path: root/src/mapblock.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mapblock.h')
-rw-r--r--src/mapblock.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/mapblock.h b/src/mapblock.h
index 197d58ec7..b2d5f98fa 100644
--- a/src/mapblock.h
+++ b/src/mapblock.h
@@ -637,6 +637,18 @@ private:
typedef std::vector<MapBlock*> MapBlockVect;
+inline bool objectpos_over_limit(v3f p)
+{
+ const static u16 map_gen_limit = MYMIN(MAX_MAP_GENERATION_LIMIT,
+ g_settings->getU16("map_generation_limit"));
+ return (p.X < -map_gen_limit
+ || p.X > map_gen_limit
+ || p.Y < -map_gen_limit
+ || p.Y > map_gen_limit
+ || p.Z < -map_gen_limit
+ || p.Z > map_gen_limit);
+}
+
inline bool blockpos_over_limit(v3s16 p)
{
const static u16 map_gen_limit = MYMIN(MAX_MAP_GENERATION_LIMIT,