From 50243773ec1270bbca6e18187d7b33632a0f13ce Mon Sep 17 00:00:00 2001 From: neoarz Date: Sat, 22 Nov 2025 14:25:21 -0500 Subject: [PATCH] fix: image link --- cogs/livecontainer/26jit.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/cogs/livecontainer/26jit.py b/cogs/livecontainer/26jit.py index c416649..4942fe6 100644 --- a/cogs/livecontainer/26jit.py +++ b/cogs/livecontainer/26jit.py @@ -1,5 +1,4 @@ import discord -from discord.ext import commands from discord.ext.commands import Context @@ -10,6 +9,9 @@ def jit26_command(): description="hello world", color=0x0169FF, ) + embed.set_author( + name="26JIT", icon_url="https://raw.githubusercontent.com/LiveContainer/LiveContainer/main/screenshots/livecontainer_icon.png" + ) if context.interaction: await context.interaction.response.send_message(embed=embed, ephemeral=True)