From 642b1c27d9f865a4c8285f237a6daa40c33eac10 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Fri, 9 Feb 2024 12:01:55 -0800 Subject: [PATCH] Adding freebird cause why not --- app/cogs/cheeky_functions.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index 9585fc13..fb758098 100755 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -308,6 +308,14 @@ class Cheeky(commands.Cog): ) ) + @commands.slash_command( + guild_ids=None, + name="freebird", + description="Gives you that good good when you're about to hit em with the flim flam", + ) + async def freebird(self, ctx: commands.Context): + await ctx.send("https://youtu.be/xTemcPZw8Eo?t=210") + def setup(bot): bot.add_cog(Cheeky(bot))