diff --git a/game/src/PlayerStates.c b/game/src/PlayerStates.c index d669506..b4ee427 100644 --- a/game/src/PlayerStates.c +++ b/game/src/PlayerStates.c @@ -74,7 +74,7 @@ const State* PlayerJabB_Update(Player* self, float deltaTime) { const float ntime = animation_sprite_get_time_normalized(self->currentAnimation); if(ntime >= 2.f) return PlayerIdle(); - if(self->attackInput && ntime > 1.1f) + if(self->attackInput && ntime > 1.0f) return PlayerJabA(); if(!veqf(self->moveInput, ZeroVector) && ntime > 1.05f) return PlayerWalk();