Skip to content

Releases: BusyBee-Development/AdvancedVanish

2026.2

10 Feb 17:24

Choose a tag to compare

Bump plugin version to 2026.2 and improve vanished players filtering logic to handle ProtocolLib compatibility issues.

v1.2.9

18 Nov 17:00

Choose a tag to compare

Bug Fixes:

  • Those in vanish can not pvp while in vanish.
  • Code cleanup

Release v1.2.8 – Stability Fix for Vanish Priorities

08 Sep 14:13

Choose a tag to compare

Changelog

  • Fixed: Prevented a potential NullPointerException in player visibility checks when vanish priorities are enabled but no permissions handler/plugin is installed.
    • Behavior change: If Config.usingPriorities is true but PermissionsManager.handler is unavailable, vanished players with the vanish permission can now see each other (safe fallback) instead of triggering an error.
    • Technical detail: Added a null-check to the priorities gate in AdvancedVanishAPI.canSee(...).
    • Affected file: src\main\kotlin\me\quantiom\advancedvanish\util\AdvancedVanishAPI.kt
    • Diff summary: Updated condition from if (!Config.usingPriorities) return true to if (!Config.usingPriorities || PermissionsManager.handler == null) return true.
    • Added PurPur support
Why this matters
  • Improves stability on servers not using a supported permissions plugin while still having priorities enabled in configuration.
Migration / Action required
  • No configuration or API changes required.
  • Optional: Verify your permissions plugin integration if you rely on vanish priorities.