mirror of
https://github.com/RafaelSolVargas/Vulkan.git
synced 2025-10-29 16:57:23 +00:00
21 lines
797 B
Python
21 lines
797 B
Python
from discord.ext.commands import Context
|
|
from discord import Client, Member
|
|
from Controllers.AbstractController import AbstractController
|
|
from Controllers.ControllerResponse import ControllerResponse
|
|
from Controllers.PlayerController import PlayersController
|
|
|
|
|
|
class ResetController(AbstractController):
|
|
def __init__(self, ctx: Context, bot: Client) -> None:
|
|
super().__init__(ctx, bot)
|
|
self.__controller = PlayersController(self.bot)
|
|
|
|
async def run(self) -> ControllerResponse:
|
|
try:
|
|
await self.player.force_stop()
|
|
await self.bot_member.move_to(None)
|
|
self.__controller.reset_player(self.guild)
|
|
return ControllerResponse(self.ctx)
|
|
except Exception as e:
|
|
print(f'DEVELOPER NOTE -> Reset Error: {e}')
|