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,