diff --git a/assets b/assets index e56184c08..f1e42601b 160000 --- a/assets +++ b/assets @@ -1 +1 @@ -Subproject commit e56184c0851e822136e3d254a51c89d54022938d +Subproject commit f1e42601b6ea2026c6e2f4627c5738bfb8b7b524 diff --git a/source/funkin/data/song/SongData.hx b/source/funkin/data/song/SongData.hx index 1a726254f..270195200 100644 --- a/source/funkin/data/song/SongData.hx +++ b/source/funkin/data/song/SongData.hx @@ -93,7 +93,7 @@ class SongMetadata implements ICloneable result.version = this.version; result.timeFormat = this.timeFormat; result.divisions = this.divisions; - result.offsets = this.offsets.clone(); + result.offsets = this.offsets != null ? this.offsets.clone() : new SongOffsets(); // if no song offsets found (aka null), so just create new ones result.timeChanges = this.timeChanges.deepClone(); result.looped = this.looped; result.playData = this.playData.clone();