Merge pull request #500 from ActualMandM/she_cheers

girlfriend cheering in tutorial
This commit is contained in:
Cameron Taylor 2021-03-29 13:43:41 -07:00 committed by GitHub
commit 217521860e
1 changed files with 5 additions and 4 deletions

View File

@ -2406,11 +2406,12 @@ class PlayState extends MusicBeatState
if (curBeat % 8 == 7 && curSong == 'Bopeebo') if (curBeat % 8 == 7 && curSong == 'Bopeebo')
{ {
boyfriend.playAnim('hey', true); boyfriend.playAnim('hey', true);
}
if (SONG.song == 'Tutorial' && dad.curCharacter == 'gf') if (curBeat % 16 == 15 && SONG.song == 'Tutorial' && dad.curCharacter == 'gf' && curBeat > 16 && curBeat < 48)
{ {
dad.playAnim('cheer', true); boyfriend.playAnim('hey', true);
} dad.playAnim('cheer', true);
} }
switch (curStage) switch (curStage)