aboutsummaryrefslogtreecommitdiff
path: root/util.lua
diff options
context:
space:
mode:
Diffstat (limited to 'util.lua')
-rw-r--r--util.lua21
1 files changed, 21 insertions, 0 deletions
diff --git a/util.lua b/util.lua
new file mode 100644
index 0000000..1e45914
--- /dev/null
+++ b/util.lua
@@ -0,0 +1,21 @@
+function mesecons_debug.get_blockpos(pos)
+ return {
+ x = math.floor(pos.x / 16),
+ y = math.floor(pos.y / 16),
+ z = math.floor(pos.z / 16)
+ }
+end
+
+function mesecons_debug.hashpos(pos)
+ return minetest.hash_node_position({
+ x = math.floor(pos.x / 16),
+ y = math.floor(pos.y / 16),
+ z = math.floor(pos.z / 16)
+ })
+end
+
+
+function mesecons_debug.wait(n)
+ local wait_until = minetest.get_us_time() + n
+ while minetest.get_us_time() < wait_until do end
+end