[p]skip (when invoked after the music is [p]pauseed)
Audio
After the music has been paused, I was expecting [p]skip to start playing the next track immediately.
After the music had been paused, the paused track restarted playing briefly before the next track started.
[p]load audio[p]pause[p]skipTo clarify, _the music un-pausing after [p]skip is not the issue_, the issue is that the paused track plays for a second or so before the next track starts.
Make sure you have sound on to hear this: https://videobin.org/+19n1/1fwt.ogg (yes I queued the same song twice)
This is caused by the play op send to Lavalink by RLL.
This appear to be an issue with the server itself and not RLL or Red.
Will keep it open for now, until i get more info here.
for context:
await self.send(
{
"op": LavalinkOutgoingOp.PLAY.value,
"guildId": str(guild_id),
"track": track.track_identifier,
}
)
Is the OP that causes it to resume play before starting next track if the current state is paused.

so this is untestable on older lavalink build.
But one say i can say with certainty is that this is not caused by Audio, Red or RLL.
After testing a bit and drilling down on this...
It is not the Lavalink jar (both Magma and Koe-based Lavalink jars responded the same, so it is not the internal sound sending system)
RLL sends OPs of play -> pause -> play during testing this behaviour
Wavelink sends OPs of play -> pause -> stop -> play, not displaying this issue.
I'll leave it up to Draper in how to handle it but as we're talking about it, we will most likely make Audio call stop on a skip like Wavelink's behaviour so that the blip of sound isn't heard.