Adding pages to songs queue to move between all queue, adding buttons to queue embed to better user experience

This commit is contained in:
Rafael Vargas
2022-08-02 21:52:54 -04:00
parent 6ba7734a36
commit 2627f95a6d
22 changed files with 192 additions and 27 deletions

View File

@@ -2,6 +2,7 @@ from abc import ABC, abstractmethod
from Handlers.HandlerResponse import HandlerResponse
from discord.ext.commands import Context
from discord import Message
from discord.ui import View
from Music.VulkanBot import VulkanBot

View File

@@ -8,4 +8,4 @@ class EmbedCommandResponse(AbstractCommandResponse):
async def run(self) -> None:
if self.response.embed:
await self.context.send(embed=self.response.embed)
await self.context.send(embed=self.response.embed, view=self.response.view)