From 42943eaab99385ef2f911dd8a9f3d5e7edf8190c Mon Sep 17 00:00:00 2001 From: nex Date: Tue, 28 Nov 2023 16:00:20 +0000 Subject: [PATCH] Make it informational --- cogs/other.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/cogs/other.py b/cogs/other.py index 2bf58bb..7b84634 100644 --- a/cogs/other.py +++ b/cogs/other.py @@ -2369,10 +2369,12 @@ class OtherCog(commands.Cog): value=value["failure"] or "Proxy is working.", inline=False ) + embed.set_footer(text="No speed test will be run.") await ctx.respond(embed=embed) if run_speed_test and FAILED is False: now = discord.utils.utcnow() embed.set_footer(text="Started speedtest at " + now.strftime("%X")) + await ctx.edit(embed=embed) chosen_proxy = ("socks5://" + proxy_uri) if proxy_uri else None async with httpx.AsyncClient( http2=True,