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 c5686b0 commit 7568cbfCopy full SHA for 7568cbf
1 file changed
source/funkin/backend/chart/VSliceParser.hx
@@ -182,7 +182,8 @@ class VSliceParser {
182
result.beatsPerMeasure = firstTimeChange.n.getDefault(Flags.DEFAULT_BEATS_PER_MEASURE);
183
result.stepsPerBeat = firstTimeChange.d.getDefault(Flags.DEFAULT_STEPS_PER_BEAT);
184
result.displayName = songName;
185
- result.difficulties = data.playData.difficulties.concat(data.playData.songVariations.getDefault([]));
+ result.difficulties = data.playData.difficulties.copy();
186
+ result.variants = data.playData.songVariations.copy();
187
188
if (result.customValues == null) result.customValues = {};
189
result.customValues.artist = data.artist;
0 commit comments