From ec09c7e57faa9388f8309e335a04113dc82021c3 Mon Sep 17 00:00:00 2001 From: Aki Date: Sun, 22 May 2016 17:25:33 +0200 Subject: Combo limit changed to 200x --- player.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'player.lua') diff --git a/player.lua b/player.lua index 7eb5f53..e00fbce 100644 --- a/player.lua +++ b/player.lua @@ -333,7 +333,7 @@ function Player:damage (horizontal, vertical) self.body:setLinearVelocity(x,0) self.body:applyLinearImpulse((28+12*self.combo)*horizontal, (60+10*self.combo)*vertical + 15) self:changeAnimation("damage") - self.combo = math.min(10, self.combo + 1) + self.combo = math.min(20, self.combo + 1) end -- DIE -- cgit v1.1