diff options
| author | Unknown <jtsshieh@outlook.com> | 2018-02-24 14:05:39 -0500 |
|---|---|---|
| committer | Unknown <jtsshieh@outlook.com> | 2018-02-24 14:05:39 -0500 |
| commit | 0af8a767a247212453a56baa29b51337b0d9b626 (patch) | |
| tree | cf41c366a5b3bb4daa0a89c375bd7d75bc3d6c27 | |
| parent | 4e492c95ea6e1d1b44cf8434f2a0215f78d04c9c (diff) | |
| download | PokeBot-0af8a767a247212453a56baa29b51337b0d9b626.tar.gz PokeBot-0af8a767a247212453a56baa29b51337b0d9b626.tar.bz2 PokeBot-0af8a767a247212453a56baa29b51337b0d9b626.zip | |
fixed\s
| -rw-r--r-- | commands/ban.js | 2 | ||||
| -rw-r--r-- | commands/kick.js | 2 | ||||
| -rw-r--r-- | commands/purge.js | 2 | ||||
| -rw-r--r-- | commands/say.js | 1 | ||||
| -rw-r--r-- | commands/softban.js | 2 | ||||
| -rw-r--r-- | commands/warn.js | 2 |
6 files changed, 6 insertions, 5 deletions
diff --git a/commands/ban.js b/commands/ban.js index 74d8447..902b4fd 100644 --- a/commands/ban.js +++ b/commands/ban.js @@ -36,6 +36,6 @@ exports.conf = { exports.help = { name: 'ban', description: 'Ban a user from this server.', - usage: '@<user> <...reason>', + usage: '@user <...reason>', category: 'Moderation', }; diff --git a/commands/kick.js b/commands/kick.js index c371c21..b015d01 100644 --- a/commands/kick.js +++ b/commands/kick.js @@ -19,6 +19,6 @@ exports.conf = { exports.help = { name: 'kick', description: 'Kick a user out of the server.', - usage: '@<user> <...reason>', + usage: '@user <...reason>', category: 'Moderation', }; diff --git a/commands/purge.js b/commands/purge.js index a0e9541..f02cb0a 100644 --- a/commands/purge.js +++ b/commands/purge.js @@ -26,6 +26,6 @@ exports.conf = { exports.help = { name: 'purge', description: 'Get rid of messages quickly.', - usage: '@(user) <messages>', + usage: '@user <messages>', category:'Moderation', }; diff --git a/commands/say.js b/commands/say.js index 9d7c156..1d57a06 100644 --- a/commands/say.js +++ b/commands/say.js @@ -16,5 +16,6 @@ exports.conf = { exports.help = { name: 'say', description: 'Control on what the bot says.', + usage: '<...text>', category: 'Owners Only', }; diff --git a/commands/softban.js b/commands/softban.js index 8c4fee0..3044090 100644 --- a/commands/softban.js +++ b/commands/softban.js @@ -36,6 +36,6 @@ exports.conf = { exports.help = { name: 'softban', description: 'Kick the user and delete their messages.', - usage: '@<user> <...reason>', + usage: '@user <...reason>', category: 'Moderation', }; diff --git a/commands/warn.js b/commands/warn.js index a20cf08..88305a0 100644 --- a/commands/warn.js +++ b/commands/warn.js @@ -28,6 +28,6 @@ exports.conf = { exports.help = { name: 'warn', description: 'Logs a warning to the user.', - usage : '@<user> <reason>', + usage : '@user <reason>', category: 'Moderation', }; |
