From a233977b355f2f73160d2a436f0391c3ea3dd566 Mon Sep 17 00:00:00 2001 From: Brandon Date: Sun, 21 Jun 2020 08:57:44 -0400 Subject: [PATCH] Fix stand not dropping when mined with pickaxe. --- mods/ITEMS/mcl_brewing/init.lua | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/mods/ITEMS/mcl_brewing/init.lua b/mods/ITEMS/mcl_brewing/init.lua index a680dca15..3783221a6 100755 --- a/mods/ITEMS/mcl_brewing/init.lua +++ b/mods/ITEMS/mcl_brewing/init.lua @@ -359,7 +359,7 @@ minetest.register_node("mcl_brewing:stand_000", { _tt_help = S("Brew Potions"), groups = {pickaxey=1, container=4, falling_node=1, crush_after_fall=1, deco_block=1, brewing_stand=1, not_in_creative_inventory = 0, not_in_craft_guide = 0}, tiles = tiles, - drop = {"mcl_brewing:stand"}, + drop = "mcl_brewing:stand", paramtype = "light", sunlight_propagates = true, is_ground_content = false, @@ -444,7 +444,7 @@ minetest.register_node("mcl_brewing:stand_100", { _tt_help = S("Brew Potions"), groups = {pickaxey=1, container=4, falling_node=1, crush_after_fall=1, deco_block=1, brewing_stand=1, not_in_creative_inventory = 1, not_in_craft_guide = 1}, tiles = tiles, - drop = "mlc_brewing:stand", + drop = "mcl_brewing:stand", paramtype = "light", sunlight_propagates = true, is_ground_content = false, @@ -528,7 +528,7 @@ minetest.register_node("mcl_brewing:stand_010", { _tt_help = S("Brew Potions"), groups = {pickaxey=1, container=4, falling_node=1, crush_after_fall=1, deco_block=1, brewing_stand=1, not_in_creative_inventory = 1, not_in_craft_guide = 1}, tiles = tiles, - drop = "mlc_brewing:stand", + drop = "mcl_brewing:stand", paramtype = "light", sunlight_propagates = true, is_ground_content = false, @@ -612,7 +612,7 @@ minetest.register_node("mcl_brewing:stand_001", { _tt_help = S("Brew Potions"), groups = {pickaxey=1, container=4, falling_node=1, crush_after_fall=1, deco_block=1, brewing_stand=1, not_in_creative_inventory = 1, not_in_craft_guide = 1}, tiles = tiles, - drop = "mlc_brewing:stand", + drop = "mcl_brewing:stand", paramtype = "light", sunlight_propagates = true, is_ground_content = false, @@ -696,7 +696,7 @@ minetest.register_node("mcl_brewing:stand_110", { _tt_help = S("Brew Potions"), groups = {pickaxey=1, container=4, falling_node=1, crush_after_fall=1, deco_block=1, brewing_stand=1, not_in_creative_inventory = 1, not_in_craft_guide = 1}, tiles = tiles, - drop = "mlc_brewing:stand", + drop = "mcl_brewing:stand", paramtype = "light", sunlight_propagates = true, is_ground_content = false, @@ -780,7 +780,7 @@ minetest.register_node("mcl_brewing:stand_101", { _tt_help = S("Brew Potions"), groups = {pickaxey=1, container=4, falling_node=1, crush_after_fall=1, deco_block=1, brewing_stand=1, not_in_creative_inventory = 1, not_in_craft_guide = 1}, tiles = tiles, - drop = "mlc_brewing:stand", + drop = "mcl_brewing:stand", paramtype = "light", sunlight_propagates = true, is_ground_content = false, @@ -864,7 +864,7 @@ minetest.register_node("mcl_brewing:stand_011", { _tt_help = S("Brew Potions"), groups = {pickaxey=1, container=4, falling_node=1, crush_after_fall=1, deco_block=1, brewing_stand=1, not_in_creative_inventory = 1, not_in_craft_guide = 1}, tiles = tiles, - drop = "mlc_brewing:stand", + drop = "mcl_brewing:stand", paramtype = "light", sunlight_propagates = true, is_ground_content = false, @@ -948,7 +948,7 @@ minetest.register_node("mcl_brewing:stand_111", { _tt_help = S("Brew Potions"), groups = {pickaxey=1, container=4, falling_node=1, crush_after_fall=1, deco_block=1, brewing_stand=1, not_in_creative_inventory = 1, not_in_craft_guide = 1}, tiles = tiles, - drop = "mlc_brewing:stand", + drop = "mcl_brewing:stand", paramtype = "light", sunlight_propagates = true, is_ground_content = false,