fix servertag show command, add stag and deer as aliases

This commit is contained in:
dawn 2026-01-20 00:39:38 +03:00
parent e1c61d6272
commit 0a3b15eb45
No known key found for this signature in database

View file

@ -121,9 +121,9 @@ pub fn edit() -> impl Iterator<Item = Command> {
.help("Changes your system's tag"), .help("Changes your system's tag"),
]; ];
let servertag = ("servertag", ["st", "guildtag"]); let servertag = ("servertag", ["st", "guildtag", "stag", "deer"]);
let system_server_tag_cmd = once( let system_server_tag_cmd = once(
command!(system, Optional(SystemRef) => "system_show_server_tag") command!(system, Optional(SystemRef), servertag => "system_show_server_tag")
.help("Shows the system's server tag"), .help("Shows the system's server tag"),
); );
let system_server_tag_self = tokens!(system, servertag); let system_server_tag_self = tokens!(system, servertag);