fix digtron crate corruption

This commit is contained in:
Thomas Rudin 2019-05-12 18:43:12 +02:00
parent bca3c97229
commit beb30a5603

View File

@ -55,6 +55,8 @@ local function drill_dig_it0 (pos,player)
if node.name == "air" or node.name == "ignore" then return end
if node.name == "default:lava_source" then return end
if node.name == "default:lava_flowing" then return end
if node.name == "digtron:loaded_crate" then return end
if node.name == "digtron:loaded_locked_crate" then return end
if node.name == "default:water_source" then minetest.remove_node(pos) return end
if node.name == "default:water_flowing" then minetest.remove_node(pos) return end
minetest.node_dig(pos,node,player)