Browse Source
add # between username and discriminator in timings footer
pull/15/merge
Purpur
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
1 additions and
1 deletions
-
cogs/timings_public.py
|
|
@ -26,7 +26,7 @@ class Timings(commands.Cog): |
|
|
|
words = message.content.replace("\n", " ").split(" ") |
|
|
|
timings_url = "" |
|
|
|
embed_var = discord.Embed(title=self.TIMINGS_TITLE) |
|
|
|
embed_var.set_footer(text="Requested by " + message.author.name + message.author.discriminator, icon_url=message.author.avatar_url) |
|
|
|
embed_var.set_footer(text="Requested by " + message.author.name + "#" + message.author.discriminator, icon_url=message.author.avatar_url) |
|
|
|
|
|
|
|
for word in words: |
|
|
|
if word.startswith("https://timings.") and "/d=" in word: |
|
|
|