From 970655737ce7f497f0725d28605fc296c9923a64 Mon Sep 17 00:00:00 2001 From: Aki Date: Thu, 6 Apr 2017 16:16:05 +0200 Subject: Hotfix for destroyed body crash --- not/Player.lua | 4 ++-- not/World.lua | 2 -- 2 files changed, 2 insertions(+), 4 deletions(-) (limited to 'not') diff --git a/not/Player.lua b/not/Player.lua index 719b77e..30057bb 100644 --- a/not/Player.lua +++ b/not/Player.lua @@ -43,9 +43,9 @@ end -- Update of `Player`. function Player:update (dt) - local x, y = self:getLinearVelocity() Hero.update(self, dt) -- TODO: It would be probably a good idea to add return to update functions to terminate if something goes badly in parent's update. - + if self.body:isDestroyed() then return end + local x, y = self:getLinearVelocity() -- Jumping. if self.isJumping and self.jumpTimer > 0 then self:setLinearVelocity(x,-160) diff --git a/not/World.lua b/not/World.lua index 6e57ac1..d234413 100644 --- a/not/World.lua +++ b/not/World.lua @@ -11,7 +11,6 @@ World = { Effects = nil, Rays = nil, camera = nil, - isActive = true, -- cloud generator clouds_delay = 5, -- Map @@ -234,7 +233,6 @@ end -- LÖVE2D callbacks -- Update ZU WARUDO function World:update (dt) - self.world:update(dt) self.camera:update(dt) -- Engine world: Nauts, Grounds (kek) and Decorations - all Animateds (top kek) -- cgit v1.1