From c2090eddb60323a9eaf27cf4681c174850338834 Mon Sep 17 00:00:00 2001 From: DrBot7 <46543473+DrBot7@users.noreply.github.com> Date: Sat, 9 Jan 2021 01:59:56 -0600 Subject: [PATCH] Update timings.py --- cogs/timings.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cogs/timings.py b/cogs/timings.py index 5723707..d53c41c 100644 --- a/cogs/timings.py +++ b/cogs/timings.py @@ -1009,9 +1009,9 @@ class Timings(commands.Cog): issue_count = len(embed_var.fields) if issue_count > 25: - embed_var.description = embed_var.description + "\nShowing 25 of " + str(issue_count) + " recommendations.\n||" + str(unchecked) + " missing optimizations due to server version.||" + embed_var.description = "Showing 25 of " + str(issue_count) + " recommendations.\n||" + str(unchecked) + " missing optimizations due to server version.||" else: - embed_var.description = embed_var.description + "\nShowing " + str(issue_count) + " of " + str(issue_count) + " recommendations.\n||" + str(unchecked) + " missing optimizations due to server version.||" + embed_var.description = "Showing " + str(issue_count) + " of " + str(issue_count) + " recommendations.\n||" + str(unchecked) + " missing optimizations due to server version.||" await message.channel.send(embed=embed_var)