mirror of
https://github.com/warengroup/eximiabots-radiox.git
synced 2024-11-10 02:20:18 +00:00
Removed volume command
This commit is contained in:
parent
10c6a8c589
commit
c17900b618
@ -89,8 +89,7 @@ module.exports = {
|
|||||||
voiceChannel: voiceChannel,
|
voiceChannel: voiceChannel,
|
||||||
connection: null,
|
connection: null,
|
||||||
audioPlayer: createAudioPlayer(),
|
audioPlayer: createAudioPlayer(),
|
||||||
station: station,
|
station: station
|
||||||
volume: 5
|
|
||||||
};
|
};
|
||||||
client.radio.set(msg.guild.id, construct);
|
client.radio.set(msg.guild.id, construct);
|
||||||
|
|
||||||
|
@ -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);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
};
|
|
@ -24,11 +24,6 @@ module.exports = {
|
|||||||
errorPlaying: "An error has occured while playing radio!",
|
errorPlaying: "An error has occured while playing radio!",
|
||||||
play: "Start playing: %radio.station.name%",
|
play: "Start playing: %radio.station.name%",
|
||||||
stop: "Stopped playback!",
|
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",
|
statisticsTitle: "Statistics",
|
||||||
maintenanceTitle: "Maintenance",
|
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% !",
|
errorToGetPlaylist: "You can't use this bot because it has no playlist available. Check more information in our Discord support server %client.config.supportGuild% !",
|
||||||
|
Loading…
Reference in New Issue
Block a user