Skip to content

Commit

Permalink
fix: Fix Dynmap Markerset allowedIcons preventing markers from being …
Browse files Browse the repository at this point in the history
…added #901
  • Loading branch information
BlayTheNinth committed Sep 16, 2024
1 parent c95776d commit e6832b3
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ public class DynmapIntegration extends DynmapCommonAPIListener {

private void prepareMarkerSets() {
if (waystoneMarkers == null) {
waystoneMarkers = api.getMarkerAPI().createMarkerSet("waystones:waystones", "Waystones", Collections.emptySet(), false);
waystoneMarkers = api.getMarkerAPI().createMarkerSet("waystones:waystones", "Waystones", null, false);
}
if (sharestoneMarkers == null) {
sharestoneMarkers = api.getMarkerAPI().createMarkerSet("waystones:sharestones", "Sharestones", Collections.emptySet(), false);
sharestoneMarkers = api.getMarkerAPI().createMarkerSet("waystones:sharestones", "Sharestones", null, false);
}
}

Expand Down

0 comments on commit e6832b3

Please sign in to comment.