mirror of
https://git.minetest.land/Mineclonia/Mineclonia.git
synced 2024-11-10 19:55:05 +00:00
Fix problem with power enchantment
This commit is contained in:
parent
46be7c0388
commit
8115575f20
1 changed files with 1 additions and 1 deletions
|
@ -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,
|
||||
|
|
Loading…
Reference in a new issue