From 3ecf775b392c5c6891bf16997e616a6ca7fd0cbc Mon Sep 17 00:00:00 2001 From: elliot Date: Sat, 25 Sep 2021 11:01:17 +0200 Subject: [PATCH] Fix update checking --- cogs/timings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/timings.py b/cogs/timings.py index 3197380..46f3462 100644 --- a/cogs/timings.py +++ b/cogs/timings.py @@ -83,7 +83,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="❌ Outdated") + embed_var.add_field(name="❌ Outdated",value=f"You are using `{version}`, you should update to `{TIMINGS_CHECK["version"]}`.") else: embed_var.add_field(name="❗ Value Error", value=f'Could not locate version from `{version}`')