diff --git a/source/funkin/play/PlayState.hx b/source/funkin/play/PlayState.hx index a26addbe6..c25e4cc41 100644 --- a/source/funkin/play/PlayState.hx +++ b/source/funkin/play/PlayState.hx @@ -568,7 +568,12 @@ class PlayState extends MusicBeatSubState // Prepare the Conductor. Conductor.forceBPM(null); - Conductor.instrumentalOffset = currentChart.offsets.getInstrumentalOffset(); + + if (currentChart.offsets != null) + { + Conductor.instrumentalOffset = currentChart.offsets.getInstrumentalOffset(); + } + Conductor.mapTimeChanges(currentChart.timeChanges); Conductor.update((Conductor.beatLengthMs * -5) + startTimestamp);