Update slash commands compatibility
This commit is contained in:
parent
8496b23cf9
commit
d2916bc4c8
1 changed files with 6 additions and 6 deletions
|
@ -23,7 +23,7 @@ class PartyGames(commands.Cog, name="Partygames"):
|
||||||
}
|
}
|
||||||
|
|
||||||
@commands.command(name='app', hidden = True)
|
@commands.command(name='app', hidden = True)
|
||||||
async def linkCreator(self, ctx, app: str = None, fromSlash = None):
|
async def _linkCreator(self, ctx, app: str = None, fromSlash = None):
|
||||||
"""Renvoie l'embed de l'app selectionée\n ➡ Syntaxe: {PREFIX}app <appName>"""
|
"""Renvoie l'embed de l'app selectionée\n ➡ Syntaxe: {PREFIX}app <appName>"""
|
||||||
if app == None:
|
if app == None:
|
||||||
return await mySendHidden(ctx, fromSlash, f"Aucune application renseignée, merci d'en renseigner une (`{ctx.prefix}app <appName>`).")
|
return await mySendHidden(ctx, fromSlash, f"Aucune application renseignée, merci d'en renseigner une (`{ctx.prefix}app <appName>`).")
|
||||||
|
@ -50,7 +50,7 @@ class PartyGames(commands.Cog, name="Partygames"):
|
||||||
@commands.command(name='youtube')
|
@commands.command(name='youtube')
|
||||||
async def _youtube(self, ctx, fromSlash = None):
|
async def _youtube(self, ctx, fromSlash = None):
|
||||||
"""Créer une instance "Youtube Together"."""
|
"""Créer une instance "Youtube Together"."""
|
||||||
return await ctx.invoke(self.client.get_command("app"), "youtube", fromSlash)
|
return await self._linkCreator(ctx, "youtube", fromSlash)
|
||||||
@cog_ext.cog_slash(name="youtube", description = "Créer une instance \"Youtube Together\".")
|
@cog_ext.cog_slash(name="youtube", description = "Créer une instance \"Youtube Together\".")
|
||||||
async def __youtube(self, ctx):
|
async def __youtube(self, ctx):
|
||||||
"""Slash command"""
|
"""Slash command"""
|
||||||
|
@ -59,7 +59,7 @@ class PartyGames(commands.Cog, name="Partygames"):
|
||||||
@commands.command(name='poker')
|
@commands.command(name='poker')
|
||||||
async def _poker(self, ctx, fromSlash = None):
|
async def _poker(self, ctx, fromSlash = None):
|
||||||
"""Créer une instance "Poker Night"."""
|
"""Créer une instance "Poker Night"."""
|
||||||
return await ctx.invoke(self.client.get_command("app"), "poker", fromSlash)
|
return await self._linkCreator(ctx, "poker", fromSlash)
|
||||||
@cog_ext.cog_slash(name="poker", description = "Créer une instance \"Poker Night\".")
|
@cog_ext.cog_slash(name="poker", description = "Créer une instance \"Poker Night\".")
|
||||||
async def __poker(self, ctx):
|
async def __poker(self, ctx):
|
||||||
"""Slash command"""
|
"""Slash command"""
|
||||||
|
@ -68,7 +68,7 @@ class PartyGames(commands.Cog, name="Partygames"):
|
||||||
@commands.command(name='chess')
|
@commands.command(name='chess')
|
||||||
async def _chess(self, ctx, fromSlash = None):
|
async def _chess(self, ctx, fromSlash = None):
|
||||||
"""Créer une instance "Chess in the Park"."""
|
"""Créer une instance "Chess in the Park"."""
|
||||||
return await ctx.invoke(self.client.get_command("app"), "chess", fromSlash)
|
return await self._linkCreator(ctx, "chess", fromSlash)
|
||||||
@cog_ext.cog_slash(name="chess", description = "Créer une instance \"Chess in the Park\".")
|
@cog_ext.cog_slash(name="chess", description = "Créer une instance \"Chess in the Park\".")
|
||||||
async def __chess(self, ctx):
|
async def __chess(self, ctx):
|
||||||
"""Slash command"""
|
"""Slash command"""
|
||||||
|
@ -77,7 +77,7 @@ class PartyGames(commands.Cog, name="Partygames"):
|
||||||
@commands.command(name='betrayal')
|
@commands.command(name='betrayal')
|
||||||
async def _betrayal(self, ctx, fromSlash = None):
|
async def _betrayal(self, ctx, fromSlash = None):
|
||||||
"""Créer une instance "Betrayal.io"."""
|
"""Créer une instance "Betrayal.io"."""
|
||||||
return await ctx.invoke(self.client.get_command("app"), "betrayal", fromSlash)
|
return await self._linkCreator(ctx, "betrayal", fromSlash)
|
||||||
@cog_ext.cog_slash(name="betrayal", description = "Créer une instance \"Betrayal.io\".")
|
@cog_ext.cog_slash(name="betrayal", description = "Créer une instance \"Betrayal.io\".")
|
||||||
async def __betrayal(self, ctx):
|
async def __betrayal(self, ctx):
|
||||||
"""Slash command"""
|
"""Slash command"""
|
||||||
|
@ -86,7 +86,7 @@ class PartyGames(commands.Cog, name="Partygames"):
|
||||||
@commands.command(name='fishing')
|
@commands.command(name='fishing')
|
||||||
async def _fishing(self, ctx, fromSlash = None):
|
async def _fishing(self, ctx, fromSlash = None):
|
||||||
"""Créer une instance "Fishington.io"."""
|
"""Créer une instance "Fishington.io"."""
|
||||||
return await ctx.invoke(self.client.get_command("app"), "fishing", fromSlash)
|
return await self._linkCreator(ctx, "fishing", fromSlash)
|
||||||
@cog_ext.cog_slash(name="fishing", description = "Créer une instance \"Fishington.io\".")
|
@cog_ext.cog_slash(name="fishing", description = "Créer une instance \"Fishington.io\".")
|
||||||
async def __fishing(self, ctx):
|
async def __fishing(self, ctx):
|
||||||
"""Slash command"""
|
"""Slash command"""
|
||||||
|
|
Reference in a new issue