Browse Source

Merge 41b27ebb2e into 05b2dcd99b

pull/15/merge
Thomas Jowsey 3 years ago
committed by GitHub
parent
commit
0ce09915a1
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 24
      cogs/timings_check.yml
  2. 2
      cogs/timings_public.py

24
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: |-

2
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))

Loading…
Cancel
Save