diff options
Diffstat (limited to 'server/editor/src/main.rs')
-rw-r--r-- | server/editor/src/main.rs | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/server/editor/src/main.rs b/server/editor/src/main.rs index fc7f241b..cd0bdbec 100644 --- a/server/editor/src/main.rs +++ b/server/editor/src/main.rs @@ -32,13 +32,18 @@ struct Args { #[derive(Parser)] #[clap(multicall = true)] pub enum Command { + /// Play the map on the game yerver + #[clap(alias = "p")] Play, + /// Save current map to permanent storage Save { name: Option<String>, }, + /// Load map from storage Load { name: Option<String>, }, + /// Teleport to spawnpoint Spawn { #[arg(short, long)] customer: bool, |