diff options
| author | 2025-11-09 22:43:05 +0000 | |
|---|---|---|
| committer | 2025-11-09 23:23:11 +0000 | |
| commit | fdb10c7ad7f8cff61eb0d2ef467adb9763204d1b (patch) | |
| tree | ec046333a3aa9a83909857acbb5f92a57779418d | |
| parent | SourceType command -> text_command (diff) | |
Add github icon to source footer
| -rw-r--r-- | pydis_core/exts/source.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pydis_core/exts/source.py b/pydis_core/exts/source.py index bf87637e..82f37db6 100644 --- a/pydis_core/exts/source.py +++ b/pydis_core/exts/source.py @@ -164,6 +164,6 @@ class SourceCode(commands.Cog, description="Displays information about the bot's embed = Embed(title=title, description=description) embed.add_field(name="Source Code", value=f"[Go to GitHub]({url})") line_text = f":{first_line}" if first_line else "" - embed.set_footer(text=f"{location}{line_text}") + embed.set_footer(text=f"{location}{line_text}", icon_url=GITHUB_AVATAR) return embed |