mirror of
https://github.com/minetest-mods/technic.git
synced 2024-11-16 15:30:42 +01:00
fix digtron crate corruption
This commit is contained in:
parent
bca3c97229
commit
beb30a5603
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue
Block a user