diff options
author | Mango0x45 <thomasvoss@live.com> | 2020-08-17 11:11:30 +0000 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2020-08-17 11:11:30 +0000 |
commit | 8936efc65d2c01a7e94edd30fafe654ca62d4854 (patch) | |
tree | da51816a2a487a5c2129bac8ef70dd36a347a3cc /cogs/utils.py | |
parent | 710bf2af80e30f30c80003104e521276da210269 (diff) | |
download | steve-bot-8936efc65d2c01a7e94edd30fafe654ca62d4854.tar steve-bot-8936efc65d2c01a7e94edd30fafe654ca62d4854.tar.gz steve-bot-8936efc65d2c01a7e94edd30fafe654ca62d4854.tar.bz2 steve-bot-8936efc65d2c01a7e94edd30fafe654ca62d4854.tar.lz steve-bot-8936efc65d2c01a7e94edd30fafe654ca62d4854.tar.xz steve-bot-8936efc65d2c01a7e94edd30fafe654ca62d4854.tar.zst steve-bot-8936efc65d2c01a7e94edd30fafe654ca62d4854.zip |
Fixed typo and set pin count to 5
Diffstat (limited to 'cogs/utils.py')
-rwxr-xr-x | cogs/utils.py | 4 |
1 files changed, 2 insertions, 2 deletions
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, |