Cheer Readers - Fixed bug with poster and bop (#351)

This commit is contained in:
Rapandrasmus 2023-03-19 18:49:13 +01:00 committed by GitHub
parent 3a84c7c9bd
commit 9cedd02c5f
1 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ namespace HeavenStudio.Games.Scripts_CheerReaders
canOpenBook = true;
BaseAnim.DoScaledAnimationAsync(bookIsWhite ? "SpinfromWhite" : "SpinfromBlack", 0.5f);
bookIsOpen = true;
noBop = false;
noBop = true;
}
public void StopSpinBook()
@ -181,7 +181,7 @@ namespace HeavenStudio.Games.Scripts_CheerReaders
posterBook.SetActive(true);
BaseAnim.DoScaledAnimationAsync("OpenBook", 0.5f);
bookIsOpen = true;
noBop = false;
noBop = true;
}
}
}