13 lines
307 B
Python
Executable File
13 lines
307 B
Python
Executable File
import discord
|
|
|
|
|
|
def modEmbed(author):
|
|
embed = discord.Embed(colour=discord.Colour.orange())
|
|
|
|
# Attach the server icon as a file
|
|
file = discord.File("files/images/server_icon.png", filename="icon.png")
|
|
|
|
embed.set_author(name=author, icon_url="attachment://icon.png")
|
|
|
|
return embed, file
|