mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-25 16:24:40 +00:00
Typo fix
This commit is contained in:
parent
038d258233
commit
6f846751c7
|
@ -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) {
|
||||
|
|
Loading…
Reference in a new issue