1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-15 11:22:55 +00:00

Added a comment

This commit is contained in:
AppleHair 2024-07-16 22:36:11 +03:00 committed by EliteMasterEric
parent 4f46a8e4d0
commit c8322c479c

View file

@ -2154,6 +2154,9 @@ class FreeplaySongData
if (!this.songDifficulties.contains(currentDifficulty) && currentDifficulty != Constants.DEFAULT_DIFFICULTY) if (!this.songDifficulties.contains(currentDifficulty) && currentDifficulty != Constants.DEFAULT_DIFFICULTY)
{ {
currentDifficulty = Constants.DEFAULT_DIFFICULTY; currentDifficulty = Constants.DEFAULT_DIFFICULTY;
// This method gets called again by the setter-method,
// so there's no need to continue.
return;
} }
var songDifficulty:SongDifficulty = song.getDifficulty(currentDifficulty, null, variations); var songDifficulty:SongDifficulty = song.getDifficulty(currentDifficulty, null, variations);