From 4df6dcacd68d5a0732e5194466ba20e775ef6b5b Mon Sep 17 00:00:00 2001 From: minenice55 Date: Wed, 16 Mar 2022 17:45:12 -0400 Subject: [PATCH] Fan Club: fix forced "peace no sync" animation --- Assets/Scripts/Games/FanClub/FanClub.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Assets/Scripts/Games/FanClub/FanClub.cs b/Assets/Scripts/Games/FanClub/FanClub.cs index f5998fa9..0922a082 100644 --- a/Assets/Scripts/Games/FanClub/FanClub.cs +++ b/Assets/Scripts/Games/FanClub/FanClub.cs @@ -146,7 +146,7 @@ namespace HeavenStudio.Games idolAnimator.Play("IdolPeace", 0, 0); break; case (int) IdolAnimations.Peace: - idolAnimator.Play("IdolPeaceNoVocal", 0, 0); + idolAnimator.Play("IdolPeaceNoSync", 0, 0); break; case (int) IdolAnimations.Clap: idolAnimator.Play("IdolCrap", 0, 0);