Lax jimmy's filters again

This commit is contained in:
Nexus 2023-03-07 15:07:00 +00:00
parent 57393cc3a3
commit 61f3f063a4
Signed by: nex
GPG key ID: 0FA334385D0B689F

View file

@ -693,7 +693,12 @@ class OtherCog(commands.Cog):
f"\\* Resolution: {window_height}x{window_width} ({window_width*window_height:,} pixels)\n"
f"\\* URL: <{friendly_url}>\n"
f"\\* Load time: {fetch_time:.2f}ms\n"
f"\\* Screenshot render time: {screenshot_time:.2f}ms\n",
f"\\* Screenshot render time: {screenshot_time:.2f}ms\n"
f"\\* Total time: {(fetch_time + screenshot_time):.2f}ms\n" +
(
'* Probability of being scat or something else horrifying: 100%'
if ctx.user.id == 1019233057519177778 else ''
),
file=screenshot,
)