diff --git a/AnarchyExploitFixesFolia/src/main/java/me/xginko/aef/config/Config.java b/AnarchyExploitFixesFolia/src/main/java/me/xginko/aef/config/Config.java index 8a323ad3..61d07220 100755 --- a/AnarchyExploitFixesFolia/src/main/java/me/xginko/aef/config/Config.java +++ b/AnarchyExploitFixesFolia/src/main/java/me/xginko/aef/config/Config.java @@ -64,12 +64,13 @@ The time in ticks (1 sec = 20 ticks) a checked tps will be cached\s A server restart is required when changing a command's enable status!"""); // Elytra Speed - this.elytra_old_chunk_limit = getLong("elytra.elytra-speed.old-chunk-inhabited-millis", 200L, """ + this.elytra_old_chunk_limit = getLong("elytra.elytra-speed.old-chunk-inhabited-ticks", 200L, """ Time in ticks that a chunk has to have been inhabited to count as old chunk.\s Note that the time is incremented once per tick per player within mob spawning\s distance of a chunk."""); - this.elytra_speed_calc_period = getInt("elytra.elytra-speed.check-period-millis", 500, - "The period in millis players will be checked to determine their speed."); + this.elytra_speed_calc_period = getInt("elytra.elytra-speed.check-period-millis", 500, """ + The period in millis players will be checked to determine their speed.\s + If you have lagging players with consistent high ping, you can increase this number."""); this.elytra_calculate_3D = getBoolean("elytra.elytra-speed.calculate-3D-speed", false, """ If set to false, will only calculate 2-Dimensional speed without taking height\s changes into consideration."""); diff --git a/AnarchyExploitFixesLegacy/src/main/java/me/xginko/aef/config/Config.java b/AnarchyExploitFixesLegacy/src/main/java/me/xginko/aef/config/Config.java index 98ff58ae..fbe3c90d 100755 --- a/AnarchyExploitFixesLegacy/src/main/java/me/xginko/aef/config/Config.java +++ b/AnarchyExploitFixesLegacy/src/main/java/me/xginko/aef/config/Config.java @@ -70,12 +70,13 @@ public Config() throws Exception { "A server restart is required when changing a command's enable status!"); // Elytra Speed - this.elytra_old_chunk_limit = getLong("elytra.elytra-speed.old-chunk-inhabited-millis", 200L, + this.elytra_old_chunk_limit = getLong("elytra.elytra-speed.old-chunk-inhabited-ticks", 200L, "Time in ticks that a chunk has to have been inhabited to count as old chunk.\n" + "Note that the time is incremented once per tick per player within mob spawning\n" + "distance of a chunk."); this.elytra_speed_calc_period = getInt("elytra.elytra-speed.check-period-millis", 500, - "The period in millis players will be checked to determine their speed."); + "The period in millis players will be checked to determine their speed.\n" + + "If you have lagging players with consistent high ping, you can increase this number."); this.elytra_calculate_3D = getBoolean("elytra.elytra-speed.calculate-3D-speed", false, "If set to false, will only calculate 2-Dimensional speed\n" + "without taking height changes into consideration.");