diff --git a/README.md b/README.md index 21aa308cf..205626180 100644 --- a/README.md +++ b/README.md @@ -7,14 +7,21 @@ Fix exploits on a Minecraft Anarchy Server [![bstats](https://bstats.org/signatures/bukkit/AnarchyExploitFixes.svg)](https://bstats.org/plugin/bukkit/AnarchyExploitFixes/8700) +## NOTICE + +This plugin has many features that are broken or do not work properly on version 1.19 or higher. Please submit pull +requests and issues for 1.19 problems. + ## Requirements -* ProtocolLib - This is for preventing packet exploits, if it's not present these exploits will not be prevented. +* ProtocolLib - This is for preventing packet exploits, if it's not present these exploits will not be prevented, and + you will get an warning message every minute. ## Prebuilt jar -Go to releases, download the latest jar -
If you wish to have a prebuilt BETA jar with the latest code, click Actions at the top of the page, click the +### Go to releases, download the latest jar + +If you wish to have a prebuilt BETA jar with the latest code, click Actions at the top of the page, click the latest build, and download the artifact. ## Building from source @@ -27,7 +34,7 @@ Run `mvn package` Add your server in a pull request -constantiam.net (70-80), 5b5t.org (50-150), openanarchy.org (40-150), 1b1t.me (5-20), scfanarchy.ggs.gg (0-3) +constantiam.net (70-80), 5b5t.org (50-150), openanarchy.org (40-150), scfanarchy.ggs.gg (0-3) ## Commands @@ -47,6 +54,8 @@ You can send bitcoin to `3DJan1GpSkhiWHYec55xKhchZC8NeC829S` You can send Monero to `49aXC8ZatrK4MrQXeSpUGsYk5HKLpeuhTZKMW8MtXuXxhNob8rQQBrkRj471Zv4ZNoCu6teYwsMy42HznLp6grCt1AUDCrW` +You can also send gift cards, contact me on Discord. + ## Contact Need to let me know of any exploits in private? Contact me on discord: `moo#0529` or email `moom0o@protonmail.com` @@ -104,6 +113,7 @@ alongside AEF to patch the majority of exploits. * Prevent too many vehicles, such as minecarts, in chunks. * Prevent bedtraps. - Disabled by default. * Prevent nether roof access. - Disabled by default. +* Prevent placing blocks on nether roof * Option to disable chests on donkeys. - This is unlike IllegalStack's, no items will drop if the chest is broken. Useful to prevent many dupe exploits, Disabled by default. * Option to prevent donkeys from going through portals. - Useful to prevent many dupe exploits, disabled by default. diff --git a/pom.xml b/pom.xml index e3e791797..f4fa3ffb3 100644 --- a/pom.xml +++ b/pom.xml @@ -6,7 +6,7 @@ me.moomoo anarchyexploitfixes - 1.26.1.3 + 1.27.0 jar AnarchyExploitFixes diff --git a/src/main/java/me/moomoo/anarchyexploitfixes/prevention/NetherRoof.java b/src/main/java/me/moomoo/anarchyexploitfixes/prevention/NetherRoof.java index fc004157b..7d50e1ac5 100644 --- a/src/main/java/me/moomoo/anarchyexploitfixes/prevention/NetherRoof.java +++ b/src/main/java/me/moomoo/anarchyexploitfixes/prevention/NetherRoof.java @@ -8,9 +8,9 @@ import org.bukkit.configuration.file.FileConfiguration; import org.bukkit.event.EventHandler; import org.bukkit.event.Listener; +import org.bukkit.event.block.BlockPlaceEvent; import org.bukkit.event.player.PlayerMoveEvent; import org.bukkit.event.player.PlayerTeleportEvent; -import org.bukkit.event.block.BlockPlaceEvent; @RequiredArgsConstructor public class NetherRoof implements Listener {