diff --git a/src/cogs/quote_quota.py b/src/cogs/quote_quota.py index c7e1ade..99cb24b 100644 --- a/src/cogs/quote_quota.py +++ b/src/cogs/quote_quota.py @@ -326,16 +326,11 @@ class QuoteQuota(commands.Cog): @commands.slash_command(name="truths") async def truths_counter(self, ctx: discord.ApplicationContext): """Counts the number of times the word 'truth' has been said in the quotes channel.""" - channel = discord.utils.get(ctx.guild.text_channels, name="spam") - if not channel: - return await ctx.respond(":x: Cannot find spam channel.") - await ctx.defer() now = discord.utils.utcnow().replace(minute=0, second=0, microsecond=0) embed = discord.Embed( title="Counting truths, please wait.", - description="This may take a minute depending on how insane Trump and Tate are feeling.", color=discord.Color.blurple(), timestamp=now, )