mirror of
https://github.com/ninjamuffin99/Funkin.git
synced 2024-11-27 09:13:18 +00:00
null fixy
This commit is contained in:
parent
304cee188a
commit
7f83daf23b
2
assets
2
assets
|
@ -1 +1 @@
|
|||
Subproject commit e56184c0851e822136e3d254a51c89d54022938d
|
||||
Subproject commit f1e42601b6ea2026c6e2f4627c5738bfb8b7b524
|
|
@ -93,7 +93,7 @@ class SongMetadata implements ICloneable<SongMetadata>
|
|||
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();
|
||||
|
|
Loading…
Reference in a new issue