diff options
| author | 8cy <[email protected]> | 2020-04-11 20:57:47 -0700 |
|---|---|---|
| committer | 8cy <[email protected]> | 2020-04-11 20:57:47 -0700 |
| commit | 6295d78afbfee11441dbd425cea6636e38049e86 (patch) | |
| tree | 83a8351a6aaa70e9720fe14eb0062e2824b86db9 /commands/utility/clear.js | |
| parent | fix server command, v2.1.2 (diff) | |
| download | s5nical-6295d78afbfee11441dbd425cea6636e38049e86.tar.xz s5nical-6295d78afbfee11441dbd425cea6636e38049e86.zip | |
add sharding + help stuff, v3.0.0
- add sharding
- add examples
- change up command aliases
- formatting
Diffstat (limited to 'commands/utility/clear.js')
| -rw-r--r-- | commands/utility/clear.js | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/commands/utility/clear.js b/commands/utility/clear.js index 0abcdac..c64c092 100644 --- a/commands/utility/clear.js +++ b/commands/utility/clear.js @@ -5,7 +5,7 @@ module.exports = class ClearUtility extends Command { constructor(client) { super(client, { name: 'clear', - aliases: ['delete', 'del', 'c'], + aliases: ['delete', 'del', 'c', 'd'], group: 'utility', memberName: 'clear', description: 'clear an ammount of messages', @@ -16,6 +16,13 @@ module.exports = class ClearUtility extends Command { prompt: 'how many messages would u like to delete?', type: 'integer' } + ], + examples: [ + 's5n!clear 23', + 's5n!delete 75', + 's5n!del 32', + 's5n!c 45', + 's5n!d 84' ] }); } |