fix indentation

This commit is contained in:
Caleb 2020-06-25 23:05:34 -06:00
parent c8ff519607
commit fc5f1d81d1
1 changed files with 3 additions and 3 deletions

View File

@ -57,9 +57,9 @@ local function drill_dig_it0 (pos,player)
if node.name == "default:lava_flowing" 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
local def = minetest.registered_nodes[node.name]
if not def then return end
def.on_dig(pos, node, player)
local def = minetest.registered_nodes[node.name]
if not def then return end
def.on_dig(pos, node, player)
end
local function drill_dig_it1 (player)