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/volume.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/volume.js')
| -rw-r--r-- | commands/voice/volume.js | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/commands/voice/volume.js b/commands/voice/volume.js index bebcf61..b8090ff 100644 --- a/commands/voice/volume.js +++ b/commands/voice/volume.js @@ -5,7 +5,7 @@ module.exports = class VolumeVoice extends Command { constructor(client) { super(client, { name: 'volume', - aliases: ['vol', 'v'], + aliases: ['vol'], group: 'voice', memberName: 'volume', description: 'changes volume of audio if playing', @@ -17,6 +17,10 @@ module.exports = class VolumeVoice extends Command { type: 'integer', validate: wantedVol => wantedVol >= 1 && wantedVol <= 200 } + ], + examples: [ + 's5n!volume 20', + 's5n!vol 50' ] }); } |