From 28239ec0fb604c4ec49f963e0dcc9f71c0afd50f Mon Sep 17 00:00:00 2001 From: Elias Fleckenstein Date: Thu, 17 Dec 2020 11:22:00 +0100 Subject: [PATCH] Remove enchanting particles on collision --- mods/CORE/mcl_enchanting/init.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/mods/CORE/mcl_enchanting/init.lua b/mods/CORE/mcl_enchanting/init.lua index d1f351b62..79dd2aee0 100644 --- a/mods/CORE/mcl_enchanting/init.lua +++ b/mods/CORE/mcl_enchanting/init.lua @@ -252,7 +252,9 @@ minetest.register_abm({ acceleration = {x = 0, y = -9.81, z = 0}, expirationtime = 2, size = 2, - texture = "mcl_enchanting_glyph_" .. math.random(18) .. ".png" + texture = "mcl_enchanting_glyph_" .. math.random(18) .. ".png", + collision_detection = true, + collision_removal = true, }) end end