From 8936efc65d2c01a7e94edd30fafe654ca62d4854 Mon Sep 17 00:00:00 2001 From: Mango0x45 Date: Mon, 17 Aug 2020 13:11:30 +0200 Subject: Fixed typo and set pin count to 5 --- cogs/utils.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'cogs/utils.py') diff --git a/cogs/utils.py b/cogs/utils.py index e2ee409..ec1e09b 100755 --- a/cogs/utils.py +++ b/cogs/utils.py @@ -176,10 +176,10 @@ class Utils(commands.Cog): @commands.Cog.listener() async def on_reaction_add(self, reaction, user): - if reaction.emoji == "⭐" and not reaction.message.id in self.pins and reaction.count >= 3: + if reaction.emoji == "⭐" and not reaction.message.id in self.pins and reaction.count >= 5: self.pins.append(reaction.message.id) - embed = discord.Embed(title="**New stared message**", + embed = discord.Embed(title="**New Starred Message**", description=reaction.message.content, colour=discord.Colour(0xb92c36), url=reaction.message.jump_url, -- cgit v1.2.3