diff --git a/app/cogs/animal_functions.py b/app/cogs/animal_functions.py index a2762f62..1903aa45 100755 --- a/app/cogs/animal_functions.py +++ b/app/cogs/animal_functions.py @@ -36,10 +36,16 @@ class AnimalFunctions(commands.Cog): guild_ids=None, name="dale", description="Posts a photo of the goodest boy. Rest in power king", - integration_types=[0, 1], - contexts=[0, 1, 2], ) - async def dale(self, ctx: commands.Context): + async def dale_slash(self, ctx: commands.Context): + await ctx.defer() + await ctx.send_followup(file=discord.File(animals.dale())) + + @commands.user_command( + guild_ids=None, + name="dale", + ) + async def dale_user(self, ctx: commands.Context, user: discord.Member): await ctx.defer() await ctx.send_followup(file=discord.File(animals.dale()))