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/voice/loop.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/voice/loop.js')
| -rw-r--r-- | commands/voice/loop.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/commands/voice/loop.js b/commands/voice/loop.js index 967130c..01bf48d 100644 --- a/commands/voice/loop.js +++ b/commands/voice/loop.js @@ -5,10 +5,12 @@ module.exports = class LoopVoice extends Command { constructor(client) { super(client, { name: 'loop', + aliases: ['repeat'], group: 'voice', memberName: 'loop', description: 'loops currently playing audio', - guildOnly: true + guildOnly: true, + examples: ['s5n!loop', 's5n!repeat'] }); } run(msg) { |