From 1dafc383bbb5ebc4fa563db8678641092f5c47da Mon Sep 17 00:00:00 2001 From: domdoc Date: Thu, 12 May 2022 15:12:25 +0200 Subject: [PATCH] Fixed hit anims showing for Idle hits --- scripts/gameplay.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/gameplay.lua b/scripts/gameplay.lua index ab78608..72771b4 100644 --- a/scripts/gameplay.lua +++ b/scripts/gameplay.lua @@ -109,7 +109,7 @@ function button_hit(button, rating, delta) if (showHitAnims) then if (rating == 1) then HitFX.TriggerAnimation("Near", button + 1) - else + elseif (rating == 2) then HitFX.TriggerAnimation("Crit", button + 1) end end