Skip to content
Snippets Groups Projects
Commit 275935f2 authored by dg's avatar dg
Browse files

Prevent an infinite loop under some rare conditions with thunderstorm on a NPC

git-svn-id: http://svn.net-core.org/repos/t-engine4@1750 51575b47-30f0-44d4-a5cc-537603b46e54
parent b8dcaff0
No related branches found
No related tags found
No related merge requests found
......@@ -34,6 +34,7 @@ function _M:act()
while self:enoughEnergy() and not self.dead do
-- Do basic actor stuff
if not mod.class.Actor.act(self) then return end
local old_energy = self.energy.value
-- Compute FOV, if needed
self:doFOV()
......@@ -47,6 +48,7 @@ function _M:act()
end
if not self.energy.used then self:useEnergy() end
if old_energy == self.energy.value then break end -- Prevent infinite loops
end
end
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment