From 1215e992f9e44a6cae13e53f6682fe669ffb6778 Mon Sep 17 00:00:00 2001 From: DrBot7 <46543473+DrBot7@users.noreply.github.com> Date: Sat, 9 Jan 2021 02:25:54 -0600 Subject: [PATCH] Timings - imprive cpu analysis --- cogs/timings.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cogs/timings.py b/cogs/timings.py index d53c41c..2022235 100644 --- a/cogs/timings.py +++ b/cogs/timings.py @@ -145,9 +145,9 @@ class Timings(commands.Cog): try: cpu = int(r["timingsMaster"]["system"]["cpu"]) - if cpu < 4: - embed_var.add_field(name="⚠ Cores", - value="You have only " + str(cpu) + " core(s). Find a better host.", + if cpu <= 2: + embed_var.add_field(name="⚠ Threads", + value="You have only " + str(cpu) + " thread(s). Find a [better host](https://www.birdflop.com).", inline=True) except KeyError: unchecked = unchecked + 1