Skip to content

Commit

Permalink
Fixed song.ini issue
Browse files Browse the repository at this point in the history
  • Loading branch information
EliteAsian123 committed Mar 23, 2023
1 parent 50b3932 commit 14e6558
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Assets/Script/Input/MicInputStrategy.cs
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public override void UpdatePlayerMode() {
}).Start();

// Activate starpower if loud!
if (dbCache > 5f && TimeSinceVoiceDetected < 0.5f) {
if (dbCache > 8f && TimeSinceVoiceDetected < 0.5f) {
CallStarpowerEvent();
}
}
Expand Down
1 change: 1 addition & 0 deletions Assets/Script/Serialization/SongIni.cs
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ public static class SongIni {

static SongIni() {
PARSER.Parser.Configuration.AllowDuplicateKeys = true;
PARSER.Parser.Configuration.CommentString = "//";
}

public static SongInfo CompleteSongInfo(SongInfo song) {
Expand Down

0 comments on commit 14e6558

Please sign in to comment.