Removed volume command

This commit is contained in:
Christer Warén 2021-06-23 18:48:38 +03:00
parent 10c6a8c589
commit c17900b618
3 changed files with 1 additions and 34 deletions

View File

@ -89,8 +89,7 @@ module.exports = {
voiceChannel: voiceChannel,
connection: null,
audioPlayer: createAudioPlayer(),
station: station,
volume: 5
station: station
};
client.radio.set(msg.guild.id, construct);

View File

@ -1,27 +0,0 @@
module.exports = {
name: 'volume',
description: 'Volume command.',
alias: 'none',
usage: '<volume>',
permission: 'MANAGE_MESSAGES',
category: 'radio',
execute(msg, args, client, Discord, command) {
let message = {};
const radio = client.radio.get(msg.guild.id);
if (!args[1] && radio) {
message.currentVolume = client.messages.currentVolume.replace("%radio.volume%", radio.volume)
return msg.channel.send(message.currentVolume);
}
const volume = parseFloat(args[1]);
if (client.funcs.check(client, msg, command)) {
if (isNaN(volume)) return msg.channel.send(client.messages.invalidVolume);
if (volume > 100) return msg.channel.send(client.messages.maxVolume);
if (volume < 0) return msg.channel.send(client.messages.negativeVolume);
radio.volume = volume;
/*radio.connection.dispatcher.setVolume(volume / 5);*/
message.newVolume = client.messages.newVolume.replace("%volume%", volume);
return msg.channel.send(message.newVolume);
}
}
};

View File

@ -24,11 +24,6 @@ module.exports = {
errorPlaying: "An error has occured while playing radio!",
play: "Start playing: %radio.station.name%",
stop: "Stopped playback!",
currentVolume: "Current volume: **%radio.volume%**",
maxVolume: "The max volume is `100`!",
invalidVolume: "You need to enter a valid __number__.",
negativeVolume: "The volume needs to be a positive number!",
newVolume: "Volume is now: **%volume%**",
statisticsTitle: "Statistics",
maintenanceTitle: "Maintenance",
errorToGetPlaylist: "You can't use this bot because it has no playlist available. Check more information in our Discord support server %client.config.supportGuild% !",