From 46ee7c6ef2bac367a74e46c2d52f4f2b1e3b2b67 Mon Sep 17 00:00:00 2001 From: DrBot7 <46543473+DrBot7@users.noreply.github.com> Date: Sun, 7 Feb 2021 17:31:42 -0600 Subject: [PATCH] Timings --- cogs/timings.py | 13 ++++--------- 1 file changed, 4 insertions(+), 9 deletions(-) diff --git a/cogs/timings.py b/cogs/timings.py index 8a88932..0e1ea81 100644 --- a/cogs/timings.py +++ b/cogs/timings.py @@ -77,7 +77,7 @@ class Timings(commands.Cog): if version_result: if compare_versions(version_result, TIMINGS_CHECK["version"]) == -1: version = version.replace("git-", "").replace("MC: ", "") - embed_var.add_field(name="❌ Legacy Build", + embed_var.add_field(name="❌ Outdated", value=f'You are using `{version}`. Update to `{TIMINGS_CHECK["version"]}`.') else: embed_var.add_field(name="❗ Value Error", @@ -148,14 +148,9 @@ class Timings(commands.Cog): players = (player_ticks / timed_ticks) max_online_players = max(players, max_online_players) index = index + 1 - if 1000 * max_online_players / int(max_mem) > 5 and int(max_mem) < 12000: - if max_online_players < 80: - embed_var.add_field(name="❌ Low memory", - value="You should be using more RAM with this many players.") - else: - embed_var.add_field(name="❌ Low memory", - value="You should be using more RAM with this many players. Consider getting a dedicated server.") - + if 1000 * max_online_players / int(max_mem) > 6 and int(max_mem) < 10000: + embed_var.add_field(name="❌ Low memory", + value="You should be using more RAM with this many players.") if "-Xms" in flags: min_mem = 0 flaglist = flags.split(" ")