mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-12-26 15:07:14 +00:00
Janky fix
This commit is contained in:
parent
005ffafe23
commit
0136202c36
|
@ -3310,6 +3310,29 @@ class ChartEditorState extends HaxeUIState
|
|||
|
||||
var targetSong:Song = Song.buildRaw(currentSongId, songMetadata.values(), availableVariations, songChartData, false);
|
||||
|
||||
// TODO: Rework asset system so we can remove this.
|
||||
switch (currentSongId)
|
||||
{
|
||||
case 'tutorial':
|
||||
Paths.setCurrentLevel('tutorial');
|
||||
case 'bopeebo' | 'fresh' | 'dadbattle':
|
||||
Paths.setCurrentLevel('week1');
|
||||
case 'spookeez' | 'south' | 'monster':
|
||||
Paths.setCurrentLevel('week2');
|
||||
case 'pico' | 'blammed' | 'philly-nice':
|
||||
Paths.setCurrentLevel('week3');
|
||||
case 'satin-panties' | 'high' | 'milf':
|
||||
Paths.setCurrentLevel('week4');
|
||||
case 'cocoa' | 'eggnog' | 'winter-horrorland':
|
||||
Paths.setCurrentLevel('week5');
|
||||
case 'senpai' | 'roses' | 'thorns':
|
||||
Paths.setCurrentLevel('week6');
|
||||
case 'ugh' | 'guns' | 'stress':
|
||||
Paths.setCurrentLevel('week7');
|
||||
case 'darnell' | 'lit-up' | '2hot' | 'blazin':
|
||||
Paths.setCurrentLevel('weekend1');
|
||||
}
|
||||
|
||||
subStateClosed.add(fixCamera);
|
||||
subStateClosed.add(updateConductor);
|
||||
|
||||
|
|
Loading…
Reference in a new issue