blob: a809c1cab66cbfa80bfb384919f2e64f328ba911 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
module.exports = {
name: 'volume',
aliases: ['vol'],
description: '',
async execute(msg, args, bot) {
msg.reply('volume is under works rn, just use the slider lol');
// if (!args) {
// msg.reply('no volume specified >:(');
// } else {
// var volume = args[0];
// dispatcher.setVolume(volume);
// }
}
};
|