forked from VoxeLibre/VoxeLibre
Implement framework for mob death
This commit is contained in:
parent
8530e6ee36
commit
b73ab976a1
|
@ -610,6 +610,11 @@ mobs.mob_step = function(self, dtime)
|
||||||
return false
|
return false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
if self.health <= 0 then
|
||||||
|
print("I'm DEAD :(")
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
local attacking = nil
|
local attacking = nil
|
||||||
|
|
||||||
--scan for players within eyesight
|
--scan for players within eyesight
|
||||||
|
|
|
@ -43,6 +43,10 @@ end
|
||||||
-- I have no idea what this does
|
-- I have no idea what this does
|
||||||
mobs.create_mob_on_rightclick = function(on_rightclick)
|
mobs.create_mob_on_rightclick = function(on_rightclick)
|
||||||
return function(self, clicker)
|
return function(self, clicker)
|
||||||
|
--don't allow rightclicking dead mobs
|
||||||
|
if self.health <= 0 then
|
||||||
|
return
|
||||||
|
end
|
||||||
local stop = on_rightclick_prefix(self, clicker)
|
local stop = on_rightclick_prefix(self, clicker)
|
||||||
if (not stop) and (on_rightclick) then
|
if (not stop) and (on_rightclick) then
|
||||||
on_rightclick(self, clicker)
|
on_rightclick(self, clicker)
|
||||||
|
@ -54,6 +58,11 @@ end
|
||||||
-- deal damage and effects when mob punched
|
-- deal damage and effects when mob punched
|
||||||
mobs.mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
|
mobs.mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
|
||||||
|
|
||||||
|
--don't do anything if the mob is already dead
|
||||||
|
if self.health <= 0 then
|
||||||
|
return
|
||||||
|
end
|
||||||
|
|
||||||
--neutral passive mobs switch to neutral hostile
|
--neutral passive mobs switch to neutral hostile
|
||||||
if self.neutral then
|
if self.neutral then
|
||||||
|
|
||||||
|
@ -82,7 +91,6 @@ mobs.mob_punch = function(self, hitter, tflp, tool_capabilities, dir)
|
||||||
|
|
||||||
--don't do damage until pause timer resets
|
--don't do damage until pause timer resets
|
||||||
if self.pause_timer > 0 then
|
if self.pause_timer > 0 then
|
||||||
print(self.pause_timer)
|
|
||||||
return
|
return
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue