From c866227d54990286aa872278d21c28a2ce6138d0 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Tue, 21 Feb 2017 16:25:41 +0100 Subject: [PATCH] Barrier and void nodes drop nothing --- mods/ITEMS/mcl_core/nodes.lua | 2 ++ 1 file changed, 2 insertions(+) diff --git a/mods/ITEMS/mcl_core/nodes.lua b/mods/ITEMS/mcl_core/nodes.lua index ae196437b..fb2d04852 100644 --- a/mods/ITEMS/mcl_core/nodes.lua +++ b/mods/ITEMS/mcl_core/nodes.lua @@ -19,6 +19,7 @@ minetest.register_node("mcl_core:barrier", { is_ground_content = false, groups = { not_in_creative_inventory = 1, oddly_breakable_by_hand = 5 }, on_blast = function() end, + drop = "", }) -- The void below the bedrock. Void damage is handled in playerplus @@ -37,6 +38,7 @@ minetest.register_node("mcl_core:void", { is_ground_content = false, groups = { not_in_creative_inventory = 1 }, on_blast = function() end, + drop = "", }) minetest.register_node("mcl_core:stone", {