1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-09-11 20:57:20 +00:00
This commit is contained in:
EliteMasterEric 2023-06-09 15:32:44 -04:00
parent 038d258233
commit 6f846751c7

View file

@ -374,11 +374,11 @@ class ChartEditorToolboxHandler
var difficultyToolboxLoadChart:Button = toolbox.findComponent('difficultyToolboxLoadChart', Button);
difficultyToolboxSaveMetadata.onClick = function(event:UIEvent) {
SongSerializer.exportSongMetadata(state.currentSongMetadata, state);
SongSerializer.exportSongMetadata(state.currentSongMetadata, state.currentSongId);
};
difficultyToolboxSaveChart.onClick = function(event:UIEvent) {
SongSerializer.exportSongChartData(state.currentSongChartData, state);
SongSerializer.exportSongChartData(state.currentSongChartData, state.currentSongId);
};
difficultyToolboxSaveAll.onClick = function(event:UIEvent) {