From 8115575f205a5c8e44cdc0c7d46f97d1e690848a Mon Sep 17 00:00:00 2001 From: epCode Date: Fri, 12 Mar 2021 16:07:57 -0800 Subject: [PATCH] Fix problem with power enchantment --- mods/ITEMS/mcl_bows/arrow.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_bows/arrow.lua b/mods/ITEMS/mcl_bows/arrow.lua index 6cfcadf0..145227e1 100644 --- a/mods/ITEMS/mcl_bows/arrow.lua +++ b/mods/ITEMS/mcl_bows/arrow.lua @@ -145,7 +145,7 @@ ARROW_ENTITY.on_step = function(self, dtime) -- Check for object "collision". Done every tick (hopefully this is not too stressing) else - if self._damage == 10 or self._damage == 9 then + if self._damage >= 9 then minetest.add_particlespawner({ amount = 1, time = .001,