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
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