From e72e28def582595aec3a23c805ed2f2c7faf4cef Mon Sep 17 00:00:00 2001 From: RandomityGuy <31925790+RandomityGuy@users.noreply.github.com> Date: Tue, 18 Mar 2025 18:21:58 +0530 Subject: [PATCH] allow recording replays past 5 mins lol --- src/Replay.hx | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/Replay.hx b/src/Replay.hx index 9e2be374..c97b7851 100644 --- a/src/Replay.hx +++ b/src/Replay.hx @@ -291,12 +291,12 @@ class Replay { public function endFrame() { // Do not record frames beyond par time/5 minutes to limit file size, if we aren't explicitly recording - if (!MarbleGame.instance.toRecord - && currentRecordFrame != null - && currentRecordFrame.clockTime > Math.min(300, MarbleGame.instance.world.mission.qualifyTime)) { - currentRecordFrame = null; - return; - } + // if (!MarbleGame.instance.toRecord + // && currentRecordFrame != null + // && currentRecordFrame.clockTime > Math.min(300, MarbleGame.instance.world.mission.qualifyTime)) { + // currentRecordFrame = null; + // return; + // } if (currentRecordFrame != null) frames.push(currentRecordFrame); currentRecordFrame = null;