mirror of
https://github.com/RYGhub/royalnet.git
synced 2024-11-24 03:54:20 +00:00
21 lines
692 B
Python
21 lines
692 B
Python
import discord
|
|
from typing import *
|
|
from royalnet.commands import *
|
|
|
|
|
|
class SkipCommand(Command):
|
|
name: str = "skip"
|
|
|
|
aliases = ["s"]
|
|
|
|
description: str = "Salta il file attualmente in riproduzione."
|
|
|
|
async def run(self, args: CommandArgs, data: CommandData) -> None:
|
|
if self.interface.name == "discord":
|
|
message: discord.Message = data.message
|
|
guild: discord.Guild = message.guild
|
|
guild_id: Optional[int] = guild.id
|
|
else:
|
|
guild_id = None
|
|
response: Dict[str, Any] = await self.interface.call_herald_event("discord", "discord_skip", guild_id=guild_id)
|
|
await data.reply("⏩ File attuale saltato!")
|