From b8c04d3763960eed61ab5506817863a36c24e1c3 Mon Sep 17 00:00:00 2001 From: sgoudham Date: Wed, 8 Jul 2020 03:49:21 +0100 Subject: [PATCH] Commenting out Homies command for now --- cogs/fun/homies.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/cogs/fun/homies.py b/cogs/fun/homies.py index 10b9b1a3..48f18907 100644 --- a/cogs/fun/homies.py +++ b/cogs/fun/homies.py @@ -1,6 +1,5 @@ import textwrap -import discord from PIL import Image, ImageDraw, ImageFont from discord.ext import commands from discord.ext.commands import command, cooldown, BucketType @@ -54,7 +53,10 @@ class Fun(commands.Cog): async def homies(self, ctx, *, user_word): """Allows people to summon the homies""" - if len(user_word) >= 20: + await ctx.send("This command is under construction." + "\nPlease wait till I say it's ready before using it lmao") + + """if len(user_word) >= 20: await ctx.send("Please make sure the prompt is below **20** characters!") return else: @@ -64,7 +66,7 @@ class Fun(commands.Cog): generate_meme('homies/AllMyHomies.jpg', top_text=top_text, bottom_text=bottom_text) - await ctx.send(file=discord.File('meme-AllMyHomies.jpg')) + await ctx.send(file=discord.File('meme-AllMyHomies.jpg'))""" def setup(bot):