mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-17 12:23:36 +00:00
tweaking???
This commit is contained in:
parent
8e04a5657f
commit
be725e9b8a
|
@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
### Removed
|
### Removed
|
||||||
- Removed APE
|
- Removed APE
|
||||||
### Fixed
|
### Fixed
|
||||||
|
- Maybe fixed double notes / jump notes. Need to tweak it for balance, but should open things up for cooler charts in the future.
|
||||||
- Old Verison popup screen weirdness ([Thanks to gedehari for the Pull Request!](https://github.com/ninjamuffin99/Funkin/pull/155))
|
- Old Verison popup screen weirdness ([Thanks to gedehari for the Pull Request!](https://github.com/ninjamuffin99/Funkin/pull/155))
|
||||||
- Song no longer loops when finishing the song. ([Thanks Injourn for the Pull Request!](https://github.com/ninjamuffin99/Funkin/pull/132))
|
- Song no longer loops when finishing the song. ([Thanks Injourn for the Pull Request!](https://github.com/ninjamuffin99/Funkin/pull/132))
|
||||||
- Screen wipe being cut off in the limo/mom stage. Should fill the whole screen now.
|
- Screen wipe being cut off in the limo/mom stage. Should fill the whole screen now.
|
||||||
|
|
|
@ -1280,6 +1280,11 @@ class PlayState extends MusicBeatState
|
||||||
if (perfectMode)
|
if (perfectMode)
|
||||||
noteCheck(true, daNote);
|
noteCheck(true, daNote);
|
||||||
|
|
||||||
|
// Jump notes
|
||||||
|
if (possibleNotes.length >= 2)
|
||||||
|
{
|
||||||
|
if (possibleNotes[0].strumTime == possibleNotes[1].strumTime)
|
||||||
|
{
|
||||||
for (coolNote in possibleNotes)
|
for (coolNote in possibleNotes)
|
||||||
{
|
{
|
||||||
if (controlArray[coolNote.noteData])
|
if (controlArray[coolNote.noteData])
|
||||||
|
@ -1296,6 +1301,14 @@ class PlayState extends MusicBeatState
|
||||||
badNoteCheck();
|
badNoteCheck();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
else
|
||||||
|
noteCheck(controlArray[daNote.noteData], daNote);
|
||||||
|
}
|
||||||
|
else // regular notes?
|
||||||
|
{
|
||||||
|
noteCheck(controlArray[daNote.noteData], daNote);
|
||||||
|
}
|
||||||
/*
|
/*
|
||||||
if (controlArray[daNote.noteData])
|
if (controlArray[daNote.noteData])
|
||||||
goodNoteHit(daNote);
|
goodNoteHit(daNote);
|
||||||
|
|
Loading…
Reference in a new issue