You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: source/archipelago/APSettingsSubState.hx
+6-3Lines changed: 6 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -419,9 +419,12 @@ class APSettingsSubState extends MusicBeatSubstate {
419
419
420
420
comment+="# This YAML file was generated by Mixtape Engine.\n";
421
421
comment+="# The amount of songs in this YAML is "+Reflect.field(yamlThing, "songList").length+".\n";
422
-
comment+="# The amount of checks possible is "+APEntryState.gameSettings.FNF.songList.length*5+".\n";
423
-
comment+="# The amount of checks if just Song Completion is used is "+APEntryState.gameSettings.FNF.songList.length*2+".\n";
424
-
comment+="# The amount of checks if just Note Checks is used is "+APEntryState.gameSettings.FNF.songList.length*3+".\n";
422
+
comment+="# The amount of checks (total) possible is "+APEntryState.gameSettings.FNF.songList.length*5+".\n";
423
+
comment+="# The amount of checks (total) if just Song Completion is used is "+APEntryState.gameSettings.FNF.songList.length*2+".\n";
424
+
comment+="# The amount of checks (total) if just Note Checks is used is "+APEntryState.gameSettings.FNF.songList.length*3+".\n";
425
+
comment+="# The amount of checks (currently) possible is "+ ((APEntryState.gameSettings.FNF.songList.length*5) -APEntryState.gameSettings.FNF.song_limit) +".\n";
426
+
comment+="# The amount of checks (currently) if just Song Completion is used is "+ ((APEntryState.gameSettings.FNF.songList.length*2) -APEntryState.gameSettings.FNF.song_limit) +".\n";
427
+
comment+="# The amount of checks (currently) if just Note Checks is used is "+ ((APEntryState.gameSettings.FNF.songList.length*3) -APEntryState.gameSettings.FNF.song_limit) +".\n";
0 commit comments