Update suggestions.py
This commit is contained in:
parent
9808b9e4c7
commit
26e71b90b7
1 changed files with 3 additions and 3 deletions
|
@ -78,9 +78,9 @@ class Suggestions(commands.Cog):
|
||||||
"Uh oh, looks like the Admins haven't added the required channel."
|
"Uh oh, looks like the Admins haven't added the required channel."
|
||||||
)
|
)
|
||||||
embed = discord.Embed(color=await ctx.embed_colour(), description=suggestion)
|
embed = discord.Embed(color=await ctx.embed_colour(), description=suggestion)
|
||||||
footer = [f"Suggested by {ctx.author.name}#{ctx.author.discriminator}",
|
footer = [f"Suggested by {ctx.author.name}#{ctx.author.discriminator} ({ctx.author.id})",
|
||||||
ctx.author.avatar_url]
|
ctx.author.avatar_url]
|
||||||
author = [f"{ctx.author.name}#{ctx.author.discriminator} ({ctx.author.id})", ctx.author.avatar_url]
|
author = [f"{ctx.author.name}#{ctx.author.discriminator}", ctx.author.avatar_url]
|
||||||
embed.set_footer(
|
embed.set_footer(
|
||||||
text=footer[0],
|
text=footer[0],
|
||||||
icon_url=footer[1]
|
icon_url=footer[1]
|
||||||
|
@ -503,4 +503,4 @@ class Suggestions(commands.Cog):
|
||||||
await self.config.custom("SUGGESTION", server, suggestion_id).denied.set(
|
await self.config.custom("SUGGESTION", server, suggestion_id).denied.set(
|
||||||
True
|
True
|
||||||
)
|
)
|
||||||
await ctx.tick()
|
await ctx.tick()
|
||||||
|
|
Loading…
Reference in a new issue