Skip to content

Commit 6658d4c

Browse files
committed
fix: multiply the volume
1 parent 2af7ba3 commit 6658d4c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/commands/music/VolumeCommand.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ export class VolumeCommand extends Command {
6262
]
6363
});
6464
}
65-
await dispatcher?.player?.setGlobalVolume(volume / 100);
65+
await dispatcher?.player?.setGlobalVolume(volume * 100);
6666
await ctx.send({
6767
embeds: [
6868
Util.createEmbed("success", `🔊 **|** Changed current volume to ${volume}%`)

0 commit comments

Comments
 (0)