diff options
| -rw-r--r-- | src/framework/standard/command.rs | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/framework/standard/command.rs b/src/framework/standard/command.rs index 5910684..797bed5 100644 --- a/src/framework/standard/command.rs +++ b/src/framework/standard/command.rs @@ -85,7 +85,8 @@ pub struct Command { pub guild_only: bool, /// Whether command can only be used by owners or not. pub owners_only: bool, - pub(crate) aliases: Vec<String>, + /// Other names that can be used to call this command instead. + pub aliases: Vec<String>, } impl Command { |