From ef7620400018df52b9f2e440c93f40469c71e389 Mon Sep 17 00:00:00 2001 From: Thomas Jowsey <36897817+jowsey@users.noreply.github.com> Date: Mon, 18 Jan 2021 07:02:00 +0000 Subject: [PATCH 1/2] Update wording of some checks Totally down to personal preference, but I just thought some wording could be improved slightly. Feel free to deny if you disagree. --- cogs/timings_check.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/cogs/timings_check.yml b/cogs/timings_check.yml index 05c91b9..b29b63e 100644 --- a/cogs/timings_check.yml +++ b/cogs/timings_check.yml @@ -23,7 +23,7 @@ plugins: ClearLag: prefix: "❌" value: |- - Plugins that claim to remove lag actually cause more lag. + Plugins that claim to remove lag usually cause more lag than they fix. LagAssist: prefix: "❌" value: |- @@ -32,19 +32,19 @@ plugins: NoChunkLag: prefix: "❌" value: |- - Plugins that claim to remove lag actually cause more lag. + Plugins that claim to remove lag usually cause more lag than they fix. NoMobLag: prefix: "❌" value: |- - Plugins that claim to remove lag actually cause more lag. + Plugins that claim to remove lag usually cause more lag than they fix. ServerBooster: prefix: "❌" value: |- - Plugins that claim to remove lag actually cause more lag. + Plugins that claim to remove lag usually cause more lag than they fix. AntiLag: prefix: "❌" value: |- - Plugins that claim to remove lag actually cause more lag. + Plugins that claim to remove lag usually cause more lag than they fix. BookLimiter: prefix: "❌" value: |- @@ -61,19 +61,19 @@ plugins: StackMob: prefix: "❌" value: |- - Stacking plugins actually cause more lag. + Stacking plugins usually cause more lag than they fix. Stacker: prefix: "❌" value: |- - Stacking plugins actually cause more lag. + Stacking plugins usually cause more lag than they fix. MobStacker: prefix: "❌" value: |- - Stacking plugins actually cause more lag. + Stacking plugins usually cause more lag than they fix. WildStacker: prefix: "❌" value: |- - Stacking plugins actually cause more lag. + Stacking plugins usually cause more lag than they fix. SuggestionBlocker: prefix: "❌" value: |- @@ -83,16 +83,16 @@ plugins: prefix: "❌" value: |- FAWE can corrupt your world. - Consider replacing FAWE with [Worldedit](https://enginehub.org/worldedit/#downloads). + If you don't *need* FAWE's performance benefits, consider replacing FAWE with [Worldedit](https://enginehub.org/worldedit/#downloads). CMI: prefix: "❌" value: |- - CMI is a buggy plugin. + CMI has been known to cause bugs. Consider replacing CMI with [EssentialsX](https://essentialsx.net/downloads.html). IllegalStack: prefix: "❌" value: |- - You probably don't need IllegalStack for survival servers as Paper already has its features. + You probably don't need IllegalStack as Paper already has its features. ExploitFixer: prefix: "❌" value: |- 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 2/2] 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))