summaryrefslogtreecommitdiffhomepage
path: root/not/Hero.lua
diff options
context:
space:
mode:
Diffstat (limited to 'not/Hero.lua')
-rw-r--r--not/Hero.lua6
1 files changed, 5 insertions, 1 deletions
diff --git a/not/Hero.lua b/not/Hero.lua
index 37e61c0..650eed4 100644
--- a/not/Hero.lua
+++ b/not/Hero.lua
@@ -169,7 +169,11 @@ end
--- Called each time Hero starts walking.
-- Is not called when only direction of walking is changed.
function Hero:onWalkingStarted ()
-
+ if (self.current ~= self.animations.attack) and
+ (self.current ~= self.animations.attack_up) and
+ (self.current ~= self.animations.attack_down) then
+ self:setAnimation("walk")
+ end
end
function Hero:onJump ()