diff options
Diffstat (limited to 'commands/voice/remove.js')
| -rw-r--r-- | commands/voice/remove.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/commands/voice/remove.js b/commands/voice/remove.js index 43650de..370dd51 100644 --- a/commands/voice/remove.js +++ b/commands/voice/remove.js @@ -5,7 +5,6 @@ module.exports = class RemoveVoice extends Command { constructor(client) { super(client, { name: 'remove', - aliases: ['rem'], group: 'voice', memberName: 'remove', description: 'removes a song from the queue', @@ -16,7 +15,8 @@ module.exports = class RemoveVoice extends Command { prompt: 'what song u want to remove from q?', type: 'integer' } - ] + ], + examples: ['s5n!remove 2'] }); } run(msg, { songNumber }) { |