mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-11-17 08:31:08 +01:00
Allow mob projectiles to hit their owner after 2 seconds (used by ghast fireball)
This commit is contained in:
parent
86a77284fa
commit
9c11d0ce92
1 changed files with 1 additions and 1 deletions
|
@ -383,7 +383,6 @@ end
|
|||
|
||||
-- register arrow for shoot attack
|
||||
function mcl_mobs.register_arrow(name, def)
|
||||
|
||||
if not name or not def then return end -- errorcheck
|
||||
|
||||
local behaviors = {}
|
||||
|
@ -417,6 +416,7 @@ function mcl_mobs.register_arrow(name, def)
|
|||
ignore_gravity = true,
|
||||
damages_players = true,
|
||||
allow_punching = function(self, entity_def, projectile_def, object)
|
||||
if self.timer > 2 then return true end
|
||||
if self._owner and object == self._owner.object then return false end
|
||||
return true
|
||||
end,
|
||||
|
|
Loading…
Reference in a new issue