Extend replay from recording live

This commit is contained in:
Sofia 2026-07-26 20:41:28 +03:00
parent a304691d1b
commit b33ba26b5e

View File

@ -316,6 +316,12 @@ impl INode for Game {
player.killing_spree = 0;
}
}
if let Some(playback) = &mut self.current_replay_playback
&& let Some(recorder) = &self.replay_recorder
{
playback.bind_mut().replay = recorder.bind().replay.clone();
}
}
}