From a7dd8b962418dac06c541db52668cac5c13b229c Mon Sep 17 00:00:00 2001 From: LostTrackpad Date: Wed, 7 Aug 2024 16:36:27 +0700 Subject: [PATCH] Re-enable replay system (WIP) --- beatrun/gamemodes/beatrun/gamemode/sh/{off => }/Replay.lua | 6 +++--- beatrun/gamemodes/beatrun/gamemode/sv/{off => }/Replay.lua | 0 2 files changed, 3 insertions(+), 3 deletions(-) rename beatrun/gamemodes/beatrun/gamemode/sh/{off => }/Replay.lua (96%) rename beatrun/gamemodes/beatrun/gamemode/sv/{off => }/Replay.lua (100%) diff --git a/beatrun/gamemodes/beatrun/gamemode/sh/off/Replay.lua b/beatrun/gamemodes/beatrun/gamemode/sh/Replay.lua similarity index 96% rename from beatrun/gamemodes/beatrun/gamemode/sh/off/Replay.lua rename to beatrun/gamemodes/beatrun/gamemode/sh/Replay.lua index b4ba4a5..e27703a 100644 --- a/beatrun/gamemodes/beatrun/gamemode/sh/off/Replay.lua +++ b/beatrun/gamemodes/beatrun/gamemode/sh/Replay.lua @@ -27,7 +27,7 @@ function ReplayCmd(ply, cmd) end if curtick > 23760 then - print("Replay recording stopped - too long") + ErrorNoHalt("Replay recording stopped (too long). Your course might be too long.") ply.ReplayRecording = false end @@ -36,7 +36,7 @@ end hook.Add("StartCommand", "ReplayStart", ReplayCmd) function ReplayStart(ply) - if not game.SinglePlayer() then return end + --if not game.SinglePlayer() then return end if ply.InReplay then return end print("Starting Replay") @@ -49,7 +49,7 @@ function ReplayStart(ply) end function ReplayStop(ply, debugdump) - if not game.SinglePlayer() then return end + --if not game.SinglePlayer() then return end if not ply.ReplayTicks then return end if ply.InReplay then return end diff --git a/beatrun/gamemodes/beatrun/gamemode/sv/off/Replay.lua b/beatrun/gamemodes/beatrun/gamemode/sv/Replay.lua similarity index 100% rename from beatrun/gamemodes/beatrun/gamemode/sv/off/Replay.lua rename to beatrun/gamemodes/beatrun/gamemode/sv/Replay.lua