fixed reload json

This commit is contained in:
KadeDeveloper 2021-07-20 01:04:59 -07:00
parent 45ed99002a
commit 2f2f0db93c

View File

@ -213,7 +213,12 @@ class ChartingState extends MusicBeatState
var index = 0;
if (_song.eventObjects == null)
_song.eventObjects = [new Song.Event("Init BPM",0,_song.bpm,"BPM Change")];
if (_song.eventObjects.length == 0)
_song.eventObjects = [new Song.Event("Init BPM",0,_song.bpm,"BPM Change")];
trace("goin");