Skip to content

Commit

Permalink
Update Giveaway.py
Browse files Browse the repository at this point in the history
spelling mistakes
  • Loading branch information
joshuangdev authored Mar 24, 2024
1 parent 8168132 commit 3695975
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions cogs/Giveaway.py
Original file line number Diff line number Diff line change
Expand Up @@ -87,15 +87,15 @@ async def roll(self, ctx, number):
return
message = await ctx.channel.fetch_message(ctx.message.reference.message_id)
if not message.author == self.CLIENT.user:
await ctx.reply("Heyyyyy, wait a minute, that's not my giveaway mesage")
await ctx.reply("Heyyyyy, wait a minute, that's not my giveaway message")
return
if not message.clean_content.startswith("Giveaway"):
await ctx.reply(
"Ok that's my messsage, but is that a giveaway message?????"
)
return
if message.embeds[0].title == "Time up":
await ctx.reply("That's an old giveaway message")
await ctx.reply("That's an old giveaway message!")
return
reaction = message.reactions[0]
users = await reaction.users().flatten()
Expand All @@ -112,7 +112,7 @@ async def roll(self, ctx, number):
await message.edit(
embed=ef.cembed(
title="Time up",
description="The giveaway has ended, hope you get it the next time",
description="The giveaway has ended, hope you get it the next time!",
color=self.CLIENT.color(ctx.guild),
thumbnail=self.CLIENT.user.avatar.url,
)
Expand Down

0 comments on commit 3695975

Please sign in to comment.