From a4e07bd489511e96df009e669a450d57f65d2138 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Mon, 6 Jul 2020 02:08:27 +0100 Subject: [PATCH] Very basic homies command --- cogs/fun/fun.py | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/cogs/fun/fun.py b/cogs/fun/fun.py index 464289d2..e1427a54 100644 --- a/cogs/fun/fun.py +++ b/cogs/fun/fun.py @@ -292,6 +292,15 @@ 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))