Update controller.py

This commit is contained in:
Azarath7
2024-01-31 14:44:27 +02:00
committed by GitHub
parent d4a21f12ee
commit 8d072746da

View File

@@ -343,7 +343,7 @@ class Forward(ControlButton):
if not self.player.current:
return await self.send(interaction, self.player.get_msg('noTrackPlaying'), ephemeral=True)
position = int(self.player.position + 30000)
position = int(self.player.position + 10000)
await self.player.seek(position)
await self.send(interaction, self.player.get_msg('forward').format(func.time(position)))
@@ -465,4 +465,4 @@ class InteractiveController(discord.ui.View):
elif isinstance(error, Exception):
await interaction.response.send_message(error)
return
return