Browse Source

lower CPU thread warning from 3 to 2

pull/16/head
Purpur 3 years ago
committed by GitHub
parent
commit
d231adeb29
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      cogs/timings.py

2
cogs/timings.py

@ -183,7 +183,7 @@ class Timings(commands.Cog):
if cpu == 1:
embed_var.add_field(name="❌ Threads",
value=f"You have only {cpu} thread. Find a [better host](https://www.birdflop.com).")
if cpu == 2 or cpu == 3:
if cpu == 2:
embed_var.add_field(name="❌ Threads",
value=f"You have only {cpu} threads. Find a [better host](https://www.birdflop.com).")
except KeyError as key:

Loading…
Cancel
Save