1
0
Fork 0
mirror of https://github.com/ninjamuffin99/Funkin.git synced 2024-11-09 00:04:42 +00:00

chart shit cooler (hashlink saving workaround)

This commit is contained in:
Cameron Taylor 2021-08-02 14:11:43 -04:00
parent 122545405b
commit 3fe28602d3

View file

@ -1082,6 +1082,10 @@ class ChartingState extends MusicBeatState
var data:String = Json.stringify(json);
#if hl
var filename = _song.song.toLowerCase();
sys.io.File.saveContent('./$filename.json', data);
#else
if ((data != null) && (data.length > 0))
{
_file = new FileReference();
@ -1090,6 +1094,7 @@ class ChartingState extends MusicBeatState
_file.addEventListener(IOErrorEvent.IO_ERROR, onSaveError);
_file.save(data.trim(), _song.song.toLowerCase() + ".json");
}
#end
}
function onSaveComplete(_):Void