From 0a6451608db81a58bfe3e8aa25c539e8618f053b Mon Sep 17 00:00:00 2001 From: Auke Kok Date: Sat, 2 Feb 2019 21:13:19 -0800 Subject: [PATCH] Set the node to non-diggable, to prevent accidental digging by admin. --- init.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/init.lua b/init.lua index 1a143ca..bc0d77f 100644 --- a/init.lua +++ b/init.lua @@ -248,6 +248,7 @@ minetest.register_node("warps:warpstone", { paramtype = "light", groups = { choppy=3 }, light_source = 8, + diggable = false, selection_box = { type = "fixed", fixed = {-0.25, -0.5, -0.25, 0.25, 0.5, 0.25}