diff options
Diffstat (limited to 'src/modules/commands/admins/management.rs')
| -rw-r--r-- | src/modules/commands/admins/management.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/commands/admins/management.rs b/src/modules/commands/admins/management.rs index cad1365..0361a64 100644 --- a/src/modules/commands/admins/management.rs +++ b/src/modules/commands/admins/management.rs @@ -34,7 +34,7 @@ impl Command for Prune { let default = CommandOptions::default(); let options = CommandOptions { // desc: Some("Bulk delete messages. Filter is one of bot, attachment, !pin, mention, or a user_resolvable.\n`bot` will prune only messages from bots.\n`attachment` will prune only messages with attachments.\n`!pin` will prune all but pinned messages.\n`mention` will prune only messages that mention a user or everyone.\nMentioning a user will prune only that user's messages.".to_string()), - desc: Some("Someone causing havoc ?\n\nFilters:\n`bot` - Prune messages from bots.\n`attachment` - Prune message with attachments.\n`!pin` - Prune messages, excluding pinned messages.\n`mention` - Prune messages that mention a user(s).\n`user` - Prune messages that were sent by that user.".to_string()), + desc: Some("Someone causing havoc?\n\nFilters:\n`bot` - Prune messages from bots.\n`attachment` - Prune message with attachments.\n`!pin` - Prune messages, excluding pinned messages.\n`mention` - Prune messages that mention a user(s).\n`user` - Prune messages that were sent by that user.".to_string()), usage: Some("<count> [filter]".to_string()), example: Some("20 bot".to_string()), min_args: Some(1), @@ -146,7 +146,7 @@ impl Command for Clean { let default = CommandOptions::default(); let options = CommandOptions { // desc: Some("Cleans up all commands and responses for Wisp sent in the past 10 minutes in the current channel.".to_string()), - desc: Some("Need to tidy up ? This'll delete all of Wisp's messages from the last ten minutes.".to_string()), + desc: Some("Need to tidy up? This'll delete all of Wisp's messages from the last ten minutes.".to_string()), required_permissions: Permissions::MANAGE_GUILD, max_args: Some(0), aliases: vec!["cleanup"].iter().map(|e| e.to_string()).collect(), |