From 5128706f9a9d2a5d90715d5c97bad08dfa1f9ccb Mon Sep 17 00:00:00 2001 From: neoarz Date: Sat, 4 Oct 2025 19:31:06 -0400 Subject: [PATCH] fix(tryitandsee): send only link instead of embed The tryitandsee command now sends a direct link (https://tryitands.ee/) instead of an embedded GIF. This simplifies the response and removes the use of embeds and images. --- cogs/miscellaneous/tryitandsee.py | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) diff --git a/cogs/miscellaneous/tryitandsee.py b/cogs/miscellaneous/tryitandsee.py index 461a77f..5ca5bf9 100644 --- a/cogs/miscellaneous/tryitandsee.py +++ b/cogs/miscellaneous/tryitandsee.py @@ -9,21 +9,15 @@ def tryitandsee_command(): description="Try it and see", ) async def tryitandsee(self, context): - gif_url = "https://yes.nighty.works/raw/1BQP8c.gif" - - embed = discord.Embed( - color=0x7289DA, - ) - embed.set_author(name="Try It And See", icon_url="https://yes.nighty.works/raw/YxMC0r.png") - embed.set_image(url=gif_url) + link = "https://tryitands.ee/" if getattr(context, "interaction", None): inter = context.interaction if not inter.response.is_done(): - await inter.response.send_message(embed=embed, ephemeral=False) + await inter.response.send_message(link, ephemeral=False) else: - await inter.followup.send(embed=embed, ephemeral=True) + await inter.followup.send(link, ephemeral=True) else: - await context.send(embed=embed) + await context.send(link) return tryitandsee