From 36f0e90ce4003f4ba3af7bcc635f6d7c95ea1429 Mon Sep 17 00:00:00 2001 From: xGinko Date: Mon, 22 Jan 2024 18:07:50 +0100 Subject: [PATCH] fix comment --- .../anarchyexploitfixes/modules/patches/WorldChangeCrash.java | 2 +- .../modules/patches/crashexploits/WorldChangeCrash.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/AnarchyExploitFixesFolia/src/main/java/me/moomoo/anarchyexploitfixes/modules/patches/WorldChangeCrash.java b/AnarchyExploitFixesFolia/src/main/java/me/moomoo/anarchyexploitfixes/modules/patches/WorldChangeCrash.java index aef4f41c6..a86d561ea 100755 --- a/AnarchyExploitFixesFolia/src/main/java/me/moomoo/anarchyexploitfixes/modules/patches/WorldChangeCrash.java +++ b/AnarchyExploitFixesFolia/src/main/java/me/moomoo/anarchyexploitfixes/modules/patches/WorldChangeCrash.java @@ -28,7 +28,7 @@ public WorldChangeCrash() { FastMath.max(config.getInt("patches.crash-exploits.prevent-fast-world-teleport-crash.teleport-delay-millis", 1000, "Time in milliseconds until an entity can teleport to another world again."), 1))); config.addComment("patches.crash-exploits.prevent-fast-world-teleport-crash.enable", - "Prevents dispensers from crashing the server when dispensing items out of bounds: https://www.youtube.com/watch?v=XL17P87O6xA"); + "Prevents crash methods that involve very fast teleporting between different worlds in a short time."); this.logIsEnabled = config.getBoolean("patches.crash-exploits.prevent-fast-world-teleport-crash.log", false); } diff --git a/AnarchyExploitFixesLegacy/src/main/java/me/moomoo/anarchyexploitfixes/modules/patches/crashexploits/WorldChangeCrash.java b/AnarchyExploitFixesLegacy/src/main/java/me/moomoo/anarchyexploitfixes/modules/patches/crashexploits/WorldChangeCrash.java index 84c967677..e35939e3f 100755 --- a/AnarchyExploitFixesLegacy/src/main/java/me/moomoo/anarchyexploitfixes/modules/patches/crashexploits/WorldChangeCrash.java +++ b/AnarchyExploitFixesLegacy/src/main/java/me/moomoo/anarchyexploitfixes/modules/patches/crashexploits/WorldChangeCrash.java @@ -27,7 +27,7 @@ public WorldChangeCrash() { FastMath.max(config.getInt("patches.crash-exploits.prevent-fast-world-teleport-crash.teleport-delay-millis", 1000, "Time in milliseconds until an entity can teleport to another world again."), 1))); config.addComment("patches.crash-exploits.prevent-fast-world-teleport-crash.enable", - "Prevents dispensers from crashing the server when dispensing items out of bounds: https://www.youtube.com/watch?v=XL17P87O6xA"); + "Prevents crash methods that involve very fast teleporting between different worlds in a short time."); this.logIsEnabled = config.getBoolean("patches.crash-exploits.prevent-fast-world-teleport-crash.log", false); }