From f85e42b7fafa3697cca51ff257aa58d7cedaffc6 Mon Sep 17 00:00:00 2001
From: FaceDeer <derksenmobile@gmail.com>
Date: Thu, 5 Jan 2017 23:52:09 -0700
Subject: Adding is_ground_content = false to all digtrons

I just had a test digtron get mostly destroyed by a dungeon generating
around it as it crossed a map chunk boundary. Apparently dungeon
generation can extend into already-generated map chunks, to prevent
dungeons from getting cut off. Hopefully this will prevent such a
tragedy from happening again.
---
 node_diggers.lua | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

(limited to 'node_diggers.lua')

diff --git a/node_diggers.lua b/node_diggers.lua
index 8907d3d..579cb12 100644
--- a/node_diggers.lua
+++ b/node_diggers.lua
@@ -47,7 +47,7 @@ minetest.register_node("digtron:digger", {
 	sounds = digtron.metal_sounds,
 	paramtype = "light",
 	paramtype2= "facedir",
-	
+	is_ground_content = false,	
 	drawtype="nodebox",
 	node_box = {
 		type = "fixed",
@@ -93,7 +93,7 @@ minetest.register_node("digtron:intermittent_digger", {
 	sounds = digtron.metal_sounds,
 	paramtype = "light",
 	paramtype2= "facedir",
-	
+	is_ground_content = false,	
 	drawtype="nodebox",
 	node_box = {
 		type = "fixed",
@@ -148,7 +148,7 @@ minetest.register_node("digtron:soft_digger", {
 	sounds = digtron.metal_sounds,
 	paramtype = "light",
 	paramtype2= "facedir",
-	
+	is_ground_content = false,	
 	drawtype="nodebox",
 	node_box = {
 		type = "fixed",
@@ -201,7 +201,7 @@ minetest.register_node("digtron:intermittent_soft_digger", {
 	sounds = digtron.metal_sounds,
 	paramtype = "light",
 	paramtype2= "facedir",
-	
+	is_ground_content = false,
 	drawtype="nodebox",
 	node_box = {
 		type = "fixed",
-- 
cgit v1.2.3