1
0
mirror of https://github.com/musix-org/musix-oss synced 2025-03-14 05:41:30 +00:00

10 lines
584 B
JavaScript
Raw Normal View History

2020-02-05 22:02:53 +02:00
module.exports = {
name: 'volume',
async execute(msg, args, client, Discord, prefix) {
2020-03-12 13:56:31 +02:00
if (!args[2]) return msg.channel.send(`${client.messages.currentDefaultVolume} \`${client.global.db.guilds[msg.guild.id].defaultVolume}\``);
if (isNaN(args[2])) return msg.channel.send(client.messages.defaultVolumeNumber);
if (args[2].length > 2) return msg.channel.send(client.messages.defaultVolumeMax);
2020-02-05 22:02:53 +02:00
client.global.db.guilds[msg.guild.id].defaultVolume = args[2];
2020-03-12 13:56:31 +02:00
msg.channel.send(`${client.messages.defaultVolumeSet} \`${args[2]}\``);
2020-02-05 22:02:53 +02:00
}
};