From 41b27ebb2e38956a282aba1c27fea6603f6c7bd9 Mon Sep 17 00:00:00 2001 From: Thomas Jowsey <36897817+jowsey@users.noreply.github.com> Date: Mon, 18 Jan 2021 07:08:18 +0000 Subject: [PATCH] Add reason for upgrading to Java 11. --- cogs/timings_public.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/timings_public.py b/cogs/timings_public.py index b021aba..3344db7 100644 --- a/cogs/timings_public.py +++ b/cogs/timings_public.py @@ -97,7 +97,7 @@ class Timings(commands.Cog): jvm_version = request["timingsMaster"]["system"]["jvmversion"] if jvm_version.startswith("1.8.") or jvm_version.startswith("9.") or jvm_version.startswith("10."): embed_var.add_field(name="❌ Java Version", - value="You are using Java " + jvm_version + ". Update to [Java 11](https://adoptopenjdk.net/installation.html).") + value="You are using Java " + jvm_version + ". Update to [Java 11](https://adoptopenjdk.net/installation.html) - it's faster, more stable, and Paper is requiring that all servers upgrade to Java 11 before 1.17 releases.") except KeyError as key: print("Missing: " + str(key))