Re-enable replay system (WIP)

This commit is contained in:
LostTrackpad 2024-08-07 16:36:27 +07:00
parent 900de4c9f4
commit a7dd8b9624
2 changed files with 3 additions and 3 deletions

View file

@ -27,7 +27,7 @@ function ReplayCmd(ply, cmd)
end end
if curtick > 23760 then 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 ply.ReplayRecording = false
end end
@ -36,7 +36,7 @@ end
hook.Add("StartCommand", "ReplayStart", ReplayCmd) hook.Add("StartCommand", "ReplayStart", ReplayCmd)
function ReplayStart(ply) function ReplayStart(ply)
if not game.SinglePlayer() then return end --if not game.SinglePlayer() then return end
if ply.InReplay then return end if ply.InReplay then return end
print("Starting Replay") print("Starting Replay")
@ -49,7 +49,7 @@ function ReplayStart(ply)
end end
function ReplayStop(ply, debugdump) 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 not ply.ReplayTicks then return end
if ply.InReplay then return end if ply.InReplay then return end