Почему громкость трека не изменяется?
@commands.command()
async def volume(self, ctx, volume: int):
if not ctx.voice_client:
return await ctx.send("Я не подключен к голос. каналу :confused:")
ctx.voice_client.source.volume = volume / 100
await ctx.send("Громкость музыки = {}%".format(volume))```