From 5a314b400c17341266f9d7de60cb5df0f1e8f3e4 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 5 Jan 2017 05:23:17 +0100 Subject: [PATCH] Dig torch by water --- mods/torches/init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mods/torches/init.lua b/mods/torches/init.lua index bf7a3d36a..0cec494ea 100644 --- a/mods/torches/init.lua +++ b/mods/torches/init.lua @@ -19,7 +19,7 @@ minetest.register_node(":default:torch", { walkable = false, liquids_pointable = false, light_source = 13, - groups = {choppy=2, dig_immediate=3, flammable=1, attached_node=1, torch=1}, + groups = {choppy=2, dig_immediate=3, flammable=1, attached_node=1, torch=1, dig_by_water=1,}, drop = "default:torch", selection_box = { type = "wallmounted", @@ -73,7 +73,7 @@ minetest.register_node(":default:torch_wall", { sunlight_propagates = true, walkable = false, light_source = 13, - groups = {choppy=2, dig_immediate=3, flammable=1, not_in_creative_inventory=1, attached_node=1, torch=1}, + groups = {choppy=2, dig_immediate=3, flammable=1, not_in_creative_inventory=1, attached_node=1, torch=1, dig_by_water=1}, drop = "default:torch", selection_box = { type = "wallmounted",