Skip to content

Releases: xGinko/AnarchyExploitFixes

1.27.2 - Fix witherspawning

05 Jan 17:43
Compare
Choose a tag to compare

fixes witherspawning config option where it won't let anything spawn near spawn.

1.27.1 - Fix null point exception

19 Nov 04:20
Compare
Choose a tag to compare

Contribute

Please consider contributing to AEF. 1.19 has many changes that break some AEF modules. It would be very helpful if you could fix or report some issues. This project is currently only maintained by contributors. I do not have any time to work on these plugins.

Changelog

  • Fix Nullpointer Exception in 1.19+ (#100)

1.27.0 - Performance Improvements

01 Aug 02:43
Compare
Choose a tag to compare

Contribute

Please consider contributing to AEF. 1.19 has many changes that break some AEF modules. It would be very helpful if you could fix or report some issues.

Changelog

  • Fixed StackOverflow error that happens on servers without a bedrock floor, and also improve performance for servers that do. (#89 #90)
  • Prevented placing blocks on the nether roof (#84 #88)

1.26.1.3 - Fix 1.18 issue with burrow

24 Jun 02:30
Compare
Choose a tag to compare
  • Fixed an issue where player would be teleported above a slab if the slab was waterlogged, for some reason newer versions can now have watered slabs. This issue does not occur in 1.12. It is most likely not possible to properly fix this issue (by checking if water exists in the slab) because I would have to setup AEF with the newer minecraft version.
    In non 1.12 versions, slabs simply won't be checked in the burrow patch. This may cause issues, such as 2 slabs stacked on eachother that won't be checked. However, it's not too big of a deal and can simply be disabled if needed.
AllowSlabsInBurrow: true # Disabled by default in 1.12, needs to be enabled to prevent a bug where players are teleported above a slab when the slab is underwater, only happens in newer versions.
  • This also ONCE AGAIN fixes golden apples. IDK wtf happened last time, but now they're called LEGACY_GOLDEN_APPLE, and it messed up my code AGAIN!

1.26.1.2 - Improvements

15 Jun 09:05
Compare
Choose a tag to compare
  • Fixed issue where golden apples were removed on newer minecraft versions
  • Added kick mode for packet elytra patch (#76) Disabled by default.
OnlyElytraPacketKick: false #If enabled, the plugin will not remove elytra from the player, but simply disconnect from the server. If you use this, do not turn off "PatchPacketElytraFly", otherwise it will not work.
  • Added sound, and message for packet elytra fly patch
OnlyElytraPacketKick: false #If enabled, the plugin will not remove elytra from the player, but simply disconnect from the server.
PacketElytraActionBar:
  enabled: false
  message: "&cDisable Packet Elytra Fly." # for action bar and kick message

1.26.1.1 - Minor changes and Silent join messages

14 Jun 09:09
9d5191a
Compare
Choose a tag to compare
  • Silent join and leave messages (#75)
# If you want to hide yourself or someone else when logging into the game, just give these rights:
#  anarchyexploitfixes.silentJoin
#  anarchyexploitfixes.silentLeave
  • Remove left over debug code that was in the specific data value code.
  • Fix error warnings from command use, such as /anarchyexploitfixes:aef
  • Send "Unknown command. Type "/help" for help." instead of "/aef"
  • Add ender pearls to the coords exploit patch.

1.26.1 - Unbreakable whitelist and fix errors

13 Jun 00:47
Compare
Choose a tag to compare
  • Add unbreakable whitelist (#71)
  EnableWhitelist: false # If enabled, only items in the whitelist will be reverted.
  Whitelist:
    - "DIAMOND_CHESTPLATE" # The name of the item in the spigot api
  • Fixes the Material cannot be null error.
    This error is from setting the wrong BANNED_BLOCKS in config.yml
    It has been changed to [20:39:44 WARN]: [AnarchyExploitFixes] BANNED_BLOCKS 'BEDROCKe' not recognized. Please change to correct value from https://hub.spigotmc.org/javadocs/spigot/org/bukkit/Material.html
  • Add config option to disable the warning completely if for some reason you want to keep the invalid block in config.
DisableBannedBlocksWarnings: false # Disable warnings for some reason
  • Fix lag from large metadata (#74)

1.26.0 - Illegal Data Values

29 May 18:24
Compare
Choose a tag to compare

This release fixes illegal golden apples that were reported by STORMIN -
image
Please note that other items with illegal data values may not be fixed, you will need to add them to the SpecificDataValues list.

DataValues:
  RevertSpecificDataValues: true # Required for rest of config options
  RevertIllegalGoldenApple: true #Revert golden apples that aren't 0 or 1.
  SpecificDataValues: # If you want to ban any other data values
    - "SuperIllegalItem(0)" # (1) is the data value. For example GOLDEN_APPLE uses (0) for unenchanted and (1) for enchanted.

This release also adds an option to ban any items with a specific player added name, also suggested by STORMIN.

BANNED_NAMES: # Remove items that were custom named to a specific string. Suggested by STORMIN.
  - "Super Insane Mega Sussy Item" # case sensitive

1.25.2.2 - Bugfixes

07 May 16:31
Compare
Choose a tag to compare

1.25.2.1:

  • Fixed banned logins being bypassed (If the plugin uses evt.disallow to prevent people from logging in.) This was to due with the PreventInvalidNames feature, where it would allow or disallow you to join if your name is illegal.

1.25.2.2

  • Patched enchantments on items that aren't supposed to have any enchants. (Before it would only patch if the enchantment level is higher than possible)

1.25.2 - Fix ChunkLoadEvent issue

09 Apr 17:48
Compare
Choose a tag to compare

This release attempts to fix an issue where the plugin would load chunks by itself.
Instead of using getChunk() on players, it will use the players coordinates instead, so it won't need to use the chunk.

Some server owners have also been having problems with ProtocolLib. It might be an issue with the newer version. Someone has made a fix for a similar issue, which might resolve the problem. Try using https://github.com/derklaro/ProtocolLib/suites/5624286711/artifacts/183226047, it is from dmulloy2/ProtocolLib#1534. If that doesn't work, try rolling back to 4.7.0 as I haven't heard of this problem since the new release came out.