diff options
| -rw-r--r-- | src/commands/voice/play.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/commands/voice/play.ts b/src/commands/voice/play.ts index 6041843..2baa241 100644 --- a/src/commands/voice/play.ts +++ b/src/commands/voice/play.ts @@ -231,7 +231,7 @@ module.exports = class PlayVoice extends Command { ) .on('start', function () { msg.guild.musicData.songDispatcher = dispatcher; - const volume = 100 / 100; + const volume = 100 / 20; msg.guild.musicData.volume = volume; dispatcher.setVolume(msg.guild.musicData.volume); const videoEmbed = new MessageEmbed() @@ -293,4 +293,4 @@ module.exports = class PlayVoice extends Command { }`; return duration; } -};
\ No newline at end of file +}; |