diff options
Diffstat (limited to 'server')
-rw-r--r-- | server/replaytool/src/main.rs | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/server/replaytool/src/main.rs b/server/replaytool/src/main.rs index a41aaa1f..527c5abf 100644 --- a/server/replaytool/src/main.rs +++ b/server/replaytool/src/main.rs @@ -35,15 +35,16 @@ use tokio_tungstenite::tungstenite::Message; #[derive(Parser)] enum Args { + /// Connects as a spectator and saves the protocol packets for replay Record { + /// Dont stop after the first game but restart instead #[arg(short, long)] r#loop: bool, url: String, output: PathBuf, }, - Replay { - input: PathBuf, - }, + /// Starts a local server that replays previously recorded sessions + Replay { input: PathBuf }, } #[derive(Serialize, Deserialize)] |