diff options
Diffstat (limited to 'src/modules/commands/admins/ignore.rs')
| -rw-r--r-- | src/modules/commands/admins/ignore.rs | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/modules/commands/admins/ignore.rs b/src/modules/commands/admins/ignore.rs index efafdac..a716a45 100644 --- a/src/modules/commands/admins/ignore.rs +++ b/src/modules/commands/admins/ignore.rs @@ -59,6 +59,7 @@ impl Command for IgnoreRemove { let default = CommandOptions::default(); let options = CommandOptions { desc: Some("Finally, I can see.".to_string()), + aliases: vec!["rm", "delete", "del"].iter().map(|e| e.to_string()).collect(), usage: Some("<channel_resolvable>".to_string()), example: Some("#general".to_string()), min_args: Some(1), @@ -99,6 +100,7 @@ impl Command for IgnoreList { let default = CommandOptions::default(); let options = CommandOptions { desc: Some("You want ME to tell YOU want channels I'm ignoring ?.".to_string()), + aliases: vec!["ls"].iter().map(|e| e.to_string()).collect(), required_permissions: Permissions::MANAGE_GUILD, max_args: Some(0), ..default |