From 1287ba7d69bbb9defd5bab69184ef0ae39a271c6 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Fri, 24 Feb 2017 06:25:28 +0100 Subject: [PATCH] =?UTF-8?q?Exclude=20barrier=20from=20=E2=80=9Csolid?= =?UTF-8?q?=E2=80=9D=20group?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- mods/ITEMS/mcl_core/nodes.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_core/nodes.lua b/mods/ITEMS/mcl_core/nodes.lua index 98069f7b1..d025a1033 100644 --- a/mods/ITEMS/mcl_core/nodes.lua +++ b/mods/ITEMS/mcl_core/nodes.lua @@ -17,7 +17,7 @@ minetest.register_node("mcl_core:barrier", { stack_max = 64, sunlight_propagates = true, is_ground_content = false, - groups = { not_in_creative_inventory = 1, oddly_breakable_by_hand = 5 }, + groups = { not_in_creative_inventory = 1, oddly_breakable_by_hand = 5, not_solid = 1 }, on_blast = function() end, drop = "", _mcl_blast_resistance = 18000003,