We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4db2101 commit 4a0b96eCopy full SHA for 4a0b96e
source/states/PlayState.hx
@@ -2377,10 +2377,10 @@ class PlayState extends MusicBeatState
2377
noteColumn = Std.int(songNotes[1] % Note.ammo[SONG.mania != null ? SONG.mania : 3]);
2378
}
2379
else {
2380
- noteColumn = Std.int(songNotes[1] % Note.ammo[SONG.mania]);
+ noteColumn = Std.int(songNotes[1] % Note.ammo[SONG.mania != null ? SONG.mania : 3]);
2381
2382
2383
- var gottaHitNote:Bool = (songNotes[1] < totalColumns);
+ var gottaHitNote:Bool = (songNotes[1] < (SONG.mania != null ? totalColumns : Note.ammo[3]));
2384
//if (songData.format.contains("mixtape_v1")) gottaHitNote = section.mustHitSection;
2385
2386
if (i != 0) {
0 commit comments