From 1704fdbed1dc23bb6def4f9a9375bca7a4ad2e46 Mon Sep 17 00:00:00 2001 From: Luke Robles Date: Thu, 28 Mar 2024 18:24:26 -0700 Subject: [PATCH] Fix /freebird to be .respond and not .send --- app/cogs/cheeky_functions.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/cogs/cheeky_functions.py b/app/cogs/cheeky_functions.py index 28387d70..ae0ecf53 100755 --- a/app/cogs/cheeky_functions.py +++ b/app/cogs/cheeky_functions.py @@ -339,7 +339,7 @@ class Cheeky(commands.Cog): 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") + await ctx.respond("https://youtu.be/xTemcPZw8Eo?t=210") def setup(bot):