Skip to content

Commit

Permalink
Tweaked event prefix texts
Browse files Browse the repository at this point in the history
  • Loading branch information
blt950 committed Aug 2, 2021
1 parent 7cceb91 commit 596327a
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions cogs/events.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ async def post_events(self):
footer=self.FOOTER
)

text = f'{role.mention}\n:clock2: **This event starts in two hours!**'
text = f'{role.mention}\n:clock2: **{event.name}** is starting in two hours!'
await channel.send(text, embed=msg)

event.mark_as_published()
Expand Down Expand Up @@ -264,7 +264,9 @@ async def fetch_api(self):
timestamp=e.start,
footer=self.FOOTER
)
await channel.send(embed=msg)

text = f':calendar_spiral: A new event has been scheduled.'
await channel.send(text, embed=msg)



Expand Down

0 comments on commit 596327a

Please sign in to comment.