summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSin <[email protected]>2020-05-21 19:59:13 -0700
committerGitHub <[email protected]>2020-05-21 19:59:13 -0700
commit1e18e49e00bd77afa08b780dc90867c54f577c10 (patch)
treec5696729524b08f65ea357bb61e9caa23de94708 /src
parentremove multipliers, add dev features (diff)
downloaddep-core-1e18e49e00bd77afa08b780dc90867c54f577c10.tar.xz
dep-core-1e18e49e00bd77afa08b780dc90867c54f577c10.zip
default volume at 20 instead of 100
change package.json version to 1.10.15
Diffstat (limited to 'src')
-rw-r--r--src/commands/voice/play.ts4
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
+};