diff --git a/scripts/pages/end-of-run/end-of-run.ts b/scripts/pages/end-of-run/end-of-run.ts index 974d0a20..1f6ee4b8 100644 --- a/scripts/pages/end-of-run/end-of-run.ts +++ b/scripts/pages/end-of-run/end-of-run.ts @@ -119,7 +119,10 @@ class EndOfRunHandler { } watchReplay() { - GameInterfaceAPI.ConsoleCommand('mom_replay_play_loaded'); + if (!this.baseRun) + return; + + GameInterfaceAPI.ConsoleCommand(`mom_tv_replay_watch ${this.baseRun.filePath}`); this.hideEndOfRun(false, true); }