mirror of
https://git.minetest.land/MineClone2/MineClone2.git
synced 2024-11-28 05:43:43 +01:00
Fix crash when hit with an arrow that is not piercing
This commit is contained in:
parent
0991c0c130
commit
99247e5f25
@ -268,7 +268,7 @@ local arrow_entity = {
|
||||
local hook = item_def and item_def._on_collide_with_entity
|
||||
if hook then hook(self, pos, obj) end
|
||||
|
||||
if self._piercing > 0 then
|
||||
if (self._piercing or 0) > 0 then
|
||||
self._piercing = self._piercing - 1
|
||||
return
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user