Initial implementation of BlueMap hook.#2295
Closed
tastybento wants to merge 5 commits intodevelopfrom
Closed
Conversation
WIP needs listeners to adapt when new islands made.
|
Member
Author
|
@copilot Complete this feature, which is to support BlueMap as a hook to BentoBox. |
Contributor
|
@tastybento I've opened a new pull request, #2850, to work on those changes. Once the pull request is ready, I'll request review from you. |
…rt, IslandResettedEvent handler, and unit tests Co-authored-by: tastybento <4407265+tastybento@users.noreply.github.com>
Complete BlueMap hook implementation
tastybento
added a commit
that referenced
this pull request
Mar 14, 2026
Implements a BlueMap integration that creates POI markers on BlueMap for each owned island, organised into per-game-mode marker sets. - BlueMapHook: registers a MarkerSet per GameModeAddon, populates it with a POIMarker for each owned island in the overworld (and nether / end when island variants are enabled), and listens for island create / delete / rename / reset events to keep markers in sync. - Registers the hook in BentoBoxHookRegistrar.registerLateHooks() so BlueMap worlds are fully loaded before markers are written. - Adds BlueMap to the softdepend list in plugin.yml. - Adds com.github.BlueMap-Minecraft:BlueMapAPI:v2.6.2 as a compileOnly + testImplementation dependency via jitpack. - BlueMapHookTest: 21 JUnit 5 tests covering hook success/failure, registerGameMode with and without nether/end worlds, island label priority (name > owner > UUID), and all four event handlers. Closes #2295 Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.




WIP needs listeners to adapt when new islands made.