summaryrefslogtreecommitdiffhomepage
path: root/not/PhysicalBody.lua
diff options
context:
space:
mode:
authorAki <nthirtyone@gmail.com>2017-04-03 21:50:40 +0200
committerAki <nthirtyone@gmail.com>2017-04-03 21:50:40 +0200
commitbe64dffe9e3354fda6220a1b25251e1664cd71cc (patch)
treebb641c54202560ee8a60f2540fbb42d85f4f0973 /not/PhysicalBody.lua
parentb4389dfb590862b50cc6c9ce59d3fcef9bd046b3 (diff)
downloadroflnauts-be64dffe9e3354fda6220a1b25251e1664cd71cc.zip
roflnauts-be64dffe9e3354fda6220a1b25251e1664cd71cc.tar.gz
roflnauts-be64dffe9e3354fda6220a1b25251e1664cd71cc.tar.bz2
Testing if body isn't destroyed in PhysicalBody's update
Diffstat (limited to 'not/PhysicalBody.lua')
-rw-r--r--not/PhysicalBody.lua1
1 files changed, 1 insertions, 0 deletions
diff --git a/not/PhysicalBody.lua b/not/PhysicalBody.lua
index 7b774f2..a7abcc0 100644
--- a/not/PhysicalBody.lua
+++ b/not/PhysicalBody.lua
@@ -50,6 +50,7 @@ end
-- Update of `PhysicalBody`.
function PhysicalBody:update (dt)
Sprite.update(self, dt)
+ if self.body:isDestroyed() then return end
end
-- Draw of `PhysicalBody`.