1
0
Fork 0
mirror of https://github.com/AquariaOSE/Aquaria.git synced 2024-11-15 14:09:06 +00:00

Fix possible dangling pointer / crash in predatorytunicate script

This commit is contained in:
fgenesis 2014-12-29 00:36:00 +01:00
parent aab0dad1cb
commit b4906a3840

View file

@ -144,13 +144,13 @@ function update(me, dt)
end
]]--
if entity_isState(me, STATE_TRAP) and v.trappedEnt ~= 0 then
entity_setPosition(v.trappedEnt, v.hx, v.hy, 0.1)
if v.trappedEnt ~= 0 then
if entity_isDead(v.trappedEnt) then
v.trappedEnt = 0
entity_setState(me, STATE_IDLE)
end
elseif entity_isState(me, STATE_TRAPPED) and v.trappedEnt ~= 0 then
elseif entity_isState(me, STATE_TRAP) then
entity_setPosition(v.trappedEnt, v.hx, v.hy, 0.1)
elseif entity_isState(me, STATE_TRAPPED) then
entity_setPosition(v.trappedEnt, v.hx, v.hy)
v.hurtTimer = v.hurtTimer + dt
if v.hurtTimer > 1 then
@ -167,6 +167,7 @@ function update(me, dt)
end
end
end
end
function enterState(me)
if entity_isState(me, STATE_IDLE) then