Adds broken code for yaml storage
Some checks failed
EpicKnarvik97/Stargate/pipeline/head There was a failure building this commit

This commit is contained in:
2025-12-17 14:28:14 +01:00
parent c5a964337a
commit 0edb800cd3
35 changed files with 652 additions and 500 deletions

View File

@@ -74,7 +74,7 @@ public final class DynmapManager {
if (markerSet == null || Stargate.getStargateConfig().isDynmapDisabled()) {
return;
}
World world = portal.getWorld();
World world = portal.getLocation().getWorld();
if (portal.getOptions().isHidden() || world == null) {
return;
}
@@ -82,7 +82,7 @@ public final class DynmapManager {
Location location;
@Nullable RelativeBlockVector exit = portal.getGate().getLayout().getExit();
if (exit == null) {
location = portal.getTopLeft();
location = portal.getLocation().getTopLeft();
} else {
location = portal.getBlockAt(exit);
}