From 6d684ff56807f184f8041341f2ac54e4f6fc7f8a Mon Sep 17 00:00:00 2001 From: sgoudham Date: Mon, 6 Jul 2020 02:37:06 +0100 Subject: [PATCH] Relocating the homies command to homies.py --- cogs/fun/fun.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/cogs/fun/fun.py b/cogs/fun/fun.py index e1427a54..464289d2 100644 --- a/cogs/fun/fun.py +++ b/cogs/fun/fun.py @@ -292,15 +292,6 @@ class Fun(commands.Cog): # Delete the message await message.delete() - @command(name="homies", aliases=["Homies"]) - async def homies(self, ctx, *, userword): - """Allows people to summon the homies""" - - response = [f"Ayo **FUCK** {userword}. All my homies **HATE** {userword}", - f"I **HATE** {userword}. All my homies **HATE** {userword}"] - - await ctx.send(random.choice(response)) - def setup(bot): bot.add_cog(Fun(bot))