From 4479a8801e3c2aa901cd1499f459272805472222 Mon Sep 17 00:00:00 2001 From: Andrew Opalach Date: Tue, 27 May 2025 13:02:57 -0400 Subject: Reinit with old packs archived --- .../Continents/Continents_1.20.x_v1.1.5-edit.jar | Bin 0 -> 58274 bytes .../charmonium-forge-nojarjar-1.20.1-6.0.7.jar | Bin 0 -> 44071090 bytes .../charmony-forge-1.20.1-6.12.0-patched.jar | Bin 0 -> 558244 bytes .../charmony_api-forge-1.20.1-6.7.0-nomixin.jar | Bin 0 -> 110331 bytes archive/patches/colormatic_drip.diff | 100 + archive/patches/extrasoundsforge_build.diff | 36 + archive/patches/journey_pac_fixes.diff | 288 +++ .../journeymap-1.20.1-5.10.1-forge-edit.jar | Bin 0 -> 7131970 bytes .../patches/open_parties_and_claims_attempt.diff | 2487 ++++++++++++++++++++ archive/patches/sound_physics_underwater.diff | 19 + 10 files changed, 2930 insertions(+) create mode 100644 archive/patches/Continents/Continents_1.20.x_v1.1.5-edit.jar create mode 100755 archive/patches/charmonium/charmonium-forge-nojarjar-1.20.1-6.0.7.jar create mode 100755 archive/patches/charmonium/charmony-forge-1.20.1-6.12.0-patched.jar create mode 100755 archive/patches/charmonium/charmony_api-forge-1.20.1-6.7.0-nomixin.jar create mode 100644 archive/patches/colormatic_drip.diff create mode 100644 archive/patches/extrasoundsforge_build.diff create mode 100644 archive/patches/journey_pac_fixes.diff create mode 100644 archive/patches/journeymap/journeymap-1.20.1-5.10.1-forge-edit.jar create mode 100644 archive/patches/open_parties_and_claims_attempt.diff create mode 100644 archive/patches/sound_physics_underwater.diff (limited to 'archive/patches') diff --git a/archive/patches/Continents/Continents_1.20.x_v1.1.5-edit.jar b/archive/patches/Continents/Continents_1.20.x_v1.1.5-edit.jar new file mode 100644 index 0000000..06660bd Binary files /dev/null and b/archive/patches/Continents/Continents_1.20.x_v1.1.5-edit.jar differ diff --git a/archive/patches/charmonium/charmonium-forge-nojarjar-1.20.1-6.0.7.jar b/archive/patches/charmonium/charmonium-forge-nojarjar-1.20.1-6.0.7.jar new file mode 100755 index 0000000..1078cd4 Binary files /dev/null and b/archive/patches/charmonium/charmonium-forge-nojarjar-1.20.1-6.0.7.jar differ diff --git a/archive/patches/charmonium/charmony-forge-1.20.1-6.12.0-patched.jar b/archive/patches/charmonium/charmony-forge-1.20.1-6.12.0-patched.jar new file mode 100755 index 0000000..057bbfa Binary files /dev/null and b/archive/patches/charmonium/charmony-forge-1.20.1-6.12.0-patched.jar differ diff --git a/archive/patches/charmonium/charmony_api-forge-1.20.1-6.7.0-nomixin.jar b/archive/patches/charmonium/charmony_api-forge-1.20.1-6.7.0-nomixin.jar new file mode 100755 index 0000000..12574b5 Binary files /dev/null and b/archive/patches/charmonium/charmony_api-forge-1.20.1-6.7.0-nomixin.jar differ diff --git a/archive/patches/colormatic_drip.diff b/archive/patches/colormatic_drip.diff new file mode 100644 index 0000000..174af86 --- /dev/null +++ b/archive/patches/colormatic_drip.diff @@ -0,0 +1,100 @@ +I think this was for 1.19. + +d1441997f0977948a3c7d0649e0e597287b89fdb(origin/master) + +diff --git a/gradlew b/gradlew +old mode 100755 +new mode 100644 +diff --git a/src/main/java/io/github/kvverti/colormatic/mixin/particle/DrippingWaterParticleFactoryMixin.java b/src/main/java/io/github/kvverti/colormatic/mixin/particle/DrippingWaterParticleFactoryMixin.java +new file mode 100644 +index 0000000..bba894e +--- /dev/null ++++ b/src/main/java/io/github/kvverti/colormatic/mixin/particle/DrippingWaterParticleFactoryMixin.java +@@ -0,0 +1,33 @@ ++package io.github.kvverti.colormatic.mixin.particle; ++ ++import io.github.kvverti.colormatic.Colormatic; ++import io.github.kvverti.colormatic.colormap.BiomeColormap; ++import net.minecraft.client.particle.BlockLeakParticle; ++import net.minecraft.client.particle.Particle; ++import net.minecraft.client.world.ClientWorld; ++import net.minecraft.particle.DefaultParticleType; ++import net.minecraft.util.math.BlockPos; ++import org.spongepowered.asm.mixin.Mixin; ++import org.spongepowered.asm.mixin.injection.At; ++import org.spongepowered.asm.mixin.injection.Inject; ++import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; ++ ++@Mixin(BlockLeakParticle.DrippingWaterFactory.class) ++public abstract class DrippingWaterParticleFactoryMixin { ++ private static final BlockPos.Mutable pos = new BlockPos.Mutable(); ++ ++ @Inject(method = "createParticle", at = @At("RETURN")) ++ private void onCreateParticle(DefaultParticleType defaultParticleType, ClientWorld clientWorld, double d, double e, double f, double g, double h, double i, CallbackInfoReturnable info) { ++ if(Colormatic.WATER_COLORS.hasCustomColormap()) { ++ Particle particle = info.getReturnValue(); ++ BiomeColormap colormap = Colormatic.WATER_COLORS.getColormap(); ++ pos.set(d, e, f); ++ int color = BiomeColormap.getBiomeColor(clientWorld, pos, colormap); ++ float r = ((color >> 16) & 0xff) / 255.0f; ++ float _g = ((color >> 8) & 0xff) / 255.0f; ++ float b = ((color >> 0) & 0xff) / 255.0f; ++ particle.setColor(r, _g, b); ++ //particle.setColor(1.F, 1.F, 1.F); ++ } ++ } ++} +diff --git a/src/main/java/io/github/kvverti/colormatic/mixin/particle/FallingWaterParticleFactoryMixin.java b/src/main/java/io/github/kvverti/colormatic/mixin/particle/FallingWaterParticleFactoryMixin.java +new file mode 100644 +index 0000000..4434b94 +--- /dev/null ++++ b/src/main/java/io/github/kvverti/colormatic/mixin/particle/FallingWaterParticleFactoryMixin.java +@@ -0,0 +1,33 @@ ++package io.github.kvverti.colormatic.mixin.particle; ++ ++import io.github.kvverti.colormatic.Colormatic; ++import io.github.kvverti.colormatic.colormap.BiomeColormap; ++import net.minecraft.client.particle.BlockLeakParticle; ++import net.minecraft.client.particle.Particle; ++import net.minecraft.client.world.ClientWorld; ++import net.minecraft.particle.DefaultParticleType; ++import net.minecraft.util.math.BlockPos; ++import org.spongepowered.asm.mixin.Mixin; ++import org.spongepowered.asm.mixin.injection.At; ++import org.spongepowered.asm.mixin.injection.Inject; ++import org.spongepowered.asm.mixin.injection.callback.CallbackInfoReturnable; ++ ++@Mixin(BlockLeakParticle.FallingWaterFactory.class) ++public abstract class FallingWaterParticleFactoryMixin { ++ private static final BlockPos.Mutable pos = new BlockPos.Mutable(); ++ ++ @Inject(method = "createParticle", at = @At("RETURN")) ++ private void onCreateParticle(DefaultParticleType defaultParticleType, ClientWorld clientWorld, double d, double e, double f, double g, double h, double i, CallbackInfoReturnable info) { ++ if(Colormatic.WATER_COLORS.hasCustomColormap()) { ++ Particle particle = info.getReturnValue(); ++ BiomeColormap colormap = Colormatic.WATER_COLORS.getColormap(); ++ pos.set(d, e, f); ++ int color = BiomeColormap.getBiomeColor(clientWorld, pos, colormap); ++ float r = ((color >> 16) & 0xff) / 255.0f; ++ float _g = ((color >> 8) & 0xff) / 255.0f; ++ float b = ((color >> 0) & 0xff) / 255.0f; ++ particle.setColor(r, _g, b); ++ //particle.setColor(1.F, 1.F, 1.F); ++ } ++ } ++} +diff --git a/src/main/resources/colormatic.mixins.json b/src/main/resources/colormatic.mixins.json +index 09517c4..7ef3f8f 100644 +--- a/src/main/resources/colormatic.mixins.json ++++ b/src/main/resources/colormatic.mixins.json +@@ -22,8 +22,9 @@ + "model.ModelLoaderMixin", + "network.MinecraftClientMixin", + "particle.DrippingLavaParticleMixin", ++ "particle.DrippingWaterParticleFactoryMixin", + "particle.DustParticleEffectMixin", +- "particle.FallingLavaParticleFactoryMixin", ++ "particle.FallingWaterParticleFactoryMixin", + "particle.LandingLavaParticleFactoryMixin", + "particle.MyceliumParticleFactoryMixin", + "particle.PortalParticleMixin", diff --git a/archive/patches/extrasoundsforge_build.diff b/archive/patches/extrasoundsforge_build.diff new file mode 100644 index 0000000..6a48a58 --- /dev/null +++ b/archive/patches/extrasoundsforge_build.diff @@ -0,0 +1,36 @@ +7fb9eca23cb5a7c252be2c3b3efc326a7c375180(origin/1.20.1) + +diff --git a/gradle/scripts/dependencies.gradle b/gradle/scripts/dependencies.gradle +index 7e22ffc..1360a60 100644 +--- a/gradle/scripts/dependencies.gradle ++++ b/gradle/scripts/dependencies.gradle +@@ -62,7 +62,7 @@ dependencies { + modImplementation(forge.resourcefullib) { transitive = false } + modImplementation(forge.resourcefulconfig) + modImplementation(forge.botarium) +- forgeRuntimeLibrary("com.teamresourceful:ByteCodecs:1.0.2") ++ //forgeRuntimeLibrary("com.teamresourceful:ByteCodecs:1.0.2") + forgeRuntimeLibrary("com.teamresourceful:yabn:1.0.3") + + // test +diff --git a/settings.gradle b/settings.gradle +index 0af86f9..32ce091 100644 +--- a/settings.gradle ++++ b/settings.gradle +@@ -4,6 +4,7 @@ pluginManagement { + maven { url = "https://maven.architectury.dev/" } + maven { url = "https://maven.minecraftforge.net/" } + maven { url = "https://maven.quiltmc.org/repository/release" } ++ maven { url = "https://maven.resourcefulbees.com/repository/maven-public/" } + gradlePluginPortal() + } + } +@@ -28,7 +29,7 @@ dependencyResolutionManagement { + def jadeForgeVersion = "11.7.1" + def botarium_version = "2.3.3" + def ad_astra_version = "1.15.18" +- def resourcefullib_version = "2.1.23" ++ def resourcefullib_version = "2.1.24" + def resourcefulconfig_version = "2.1.2" + def gtmVersion = "1.2.0" + def ldLibVersion = "1.0.25.c" diff --git a/archive/patches/journey_pac_fixes.diff b/archive/patches/journey_pac_fixes.diff new file mode 100644 index 0000000..145e369 --- /dev/null +++ b/archive/patches/journey_pac_fixes.diff @@ -0,0 +1,288 @@ +c6db7b8bd0b71e7284762f581b7ff1683ef7c829(origin/1.20) + +diff --git a/common/build.gradle b/common/build.gradle +index bfcca14..2d0c586 100644 +--- a/common/build.gradle ++++ b/common/build.gradle +@@ -1,6 +1,10 @@ ++buildscript { ++ dependencies.add 'classpath', 'org.spongepowered:vanillagradle:0.2.1-20240507.024226-82' ++} ++ + plugins { + id 'java' +- id 'org.spongepowered.gradle.vanilla' version '0.2.1-SNAPSHOT' ++ id 'org.spongepowered.gradle.vanilla' version '0.2.1-20240507.024226-82' + id 'maven-publish' + } + +@@ -25,7 +29,8 @@ dependencies { + + compileOnly "fuzs.forgeconfigapiport:forgeconfigapiport-fabric:8.0.0" + // forge dependency (with unobfuscated class names) because OPaC doesn't publish dev jars +- compileOnly "maven.modrinth:open-parties-and-claims:forge-1.19.2-0.15.0" ++ compileOnly files("../libs/open-parties-and-claims-common-1.20.1-0.23.2.jar") ++ //compileOnly "maven.modrinth:open-parties-and-claims:forge-1.19.2-0.15.0" + compileOnly("info.journeymap:journeymap-api:1.20-1.9-SNAPSHOT") {changing = true} + } + +diff --git a/common/src/main/java/journeypac/JourneymapPlugin.java b/common/src/main/java/journeypac/JourneymapPlugin.java +index 834f804..32da85e 100644 +--- a/common/src/main/java/journeypac/JourneymapPlugin.java ++++ b/common/src/main/java/journeypac/JourneymapPlugin.java +@@ -2,8 +2,7 @@ package journeypac; + + import java.util.Arrays; + import java.util.EnumSet; +-import java.util.HashMap; +-import java.util.Map; ++import java.util.concurrent.ConcurrentHashMap; + + import org.lwjgl.glfw.GLFW; + +@@ -15,6 +14,7 @@ import journeymap.client.api.IClientPlugin; + import journeymap.client.api.display.Context; + import journeymap.client.api.display.IThemeButton; + import journeymap.client.api.display.PolygonOverlay; ++import journeymap.client.api.display.DisplayType; + import journeymap.client.api.event.ClientEvent; + import journeymap.client.api.event.DisplayUpdateEvent; + import journeymap.client.api.event.FullscreenMapEvent.ClickEvent; +@@ -61,11 +61,12 @@ public class JourneymapPlugin implements IClientPlugin + private OpenPACClientAPI opacApi; + private ConfigFacade config; + private KeyMappings keyMap; +- ++ + private ResourceKey dimension; + private boolean showClaims; +- private Map claimMap = new HashMap<>(); +- ++ private ConcurrentHashMap claimMap = new ConcurrentHashMap<>(); ++ private boolean claimsLoaded = false; ++ + private ClaimMode areaMode; + private boolean areaAdd; + private int areaStartX; +@@ -210,7 +211,7 @@ public class JourneymapPlugin implements IClientPlugin + // total rebuild, make sure to remove claims + hideClaims(); + claimMap.clear(); +- buildDimension(opacApi.getClaimsManager().getDimension(dimension.location())); ++ buildDimension(opacApi.getClaimsManager().ensureDimension(dimension.location())); + if (showClaims) showClaims(); + } + } +@@ -233,7 +234,7 @@ public class JourneymapPlugin implements IClientPlugin + ClientEvent.Type.MAP_MOUSE_MOVED)); + JourneyPAC.getInstance().getEvents().onAddonButtonDisplay((fs, display) -> + { +- display.addThemeToggleButton("button.journeypac.toggle_claims", "opac", showClaims, this::onToggleClaims); ++ display.addThemeToggleButton("button.journeypac.hide_claims", "button.journeypac.show_claims", "opac", showClaims, this::onToggleClaims); + }); + + opacApi = OpenPACClientAPI.get(); +@@ -309,12 +310,23 @@ public class JourneymapPlugin implements IClientPlugin + try + { + ResourceKey curr = JourneymapPlugin.this.dimension; ++ if (dimension == null) ++ { ++ claimsLoaded = true; ++ if (curr != null && claimMap.isEmpty()) ++ { ++ JourneyPAC.LOGGER.debug("Mapping from onDimensionChange"); ++ buildDimension(opacApi.getClaimsManager().ensureDimension(curr.location())); ++ if (showClaims) showClaims(); ++ } ++ return; ++ } + if (curr != null && curr.location().equals(dimension)) + { + JourneyPAC.LOGGER.debug("Updating dimension " + dimension); + // total rebuild, make sure to remove current claims + hideClaims(); +- buildDimension(opacApi.getClaimsManager().getDimension(dimension)); ++ buildDimension(opacApi.getClaimsManager().ensureDimension(dimension)); + showClaims(); + } + } +@@ -330,9 +342,9 @@ public class JourneymapPlugin implements IClientPlugin + { + try + { +- showClaims = btn.getToggled() != Boolean.TRUE; ++ btn.toggle(); ++ showClaims = btn.getToggled() == Boolean.TRUE; + config.setShowClaims(showClaims); +- btn.setToggled(showClaims); + if (!claimMap.isEmpty()) + { + if (showClaims) showClaims(); +@@ -345,13 +357,10 @@ public class JourneymapPlugin implements IClientPlugin + } + } + +- private void buildDimension(IClientDimensionClaimsManagerAPI dimClaims) ++ private void buildDimension(IClientDimensionClaimsManagerAPI dimClaims) + { + claimMap.clear(); +- if (dimClaims != null && dimClaims.getCount() > 0) +- { +- dimClaims.getRegionStream().forEach(this::buildRegion); +- } ++ dimClaims.getRegionStream().forEach(this::buildRegion); + } + + private void buildRegion(IClientRegionClaimsAPI regionClaims) +@@ -408,9 +417,20 @@ public class JourneymapPlugin implements IClientPlugin + { + // get the name for this claim + String playerName = playerInfo.getPlayerUsername(); ++ String subPartyName = playerInfo.getPartyName(claim.getSubConfigIndex()); ++ String partyName = subPartyName != null ? subPartyName : playerInfo.getPartyName(); + String subName = playerInfo.getClaimsName(claim.getSubConfigIndex()); + String name = subName != null ? subName : playerInfo.getClaimsName(); +- trueName = name == null || name.isEmpty() ? playerName : playerName + " / " + name; ++ String ownerName = (partyName == null || partyName.isEmpty()) ? playerName : partyName; ++ if (name == null || name.isEmpty()) ++ { ++ trueName = ownerName; ++ } ++ else ++ { ++ trueName = name; ++ if (!playerName.equals("\"Server\"")) trueName += " (" + ownerName + ")"; ++ } + } + // generate the polygon overlay for this chunk + ShapeProperties shape = new ShapeProperties().setFillColor(color) +@@ -444,7 +464,10 @@ public class JourneymapPlugin implements IClientPlugin + { + for (PolygonOverlay curr : inRegion) + { +- if (curr != null) jmApi.show(curr); ++ if (curr != null && !jmApi.exists(curr)) ++ { ++ jmApi.show(curr); ++ } + } + } + } +@@ -457,18 +480,9 @@ public class JourneymapPlugin implements IClientPlugin + + private void hideClaims() + { +- if (!claimMap.isEmpty()) +- { +- for (PolygonOverlay[] inRegion : claimMap.values()) +- { +- for (PolygonOverlay curr : inRegion) +- { +- if (curr != null) jmApi.remove(curr); +- } +- } +- } ++ jmApi.removeAll(getModId(), DisplayType.Polygon); + } +- ++ + public void onEvent(ClientEvent event) + { + try +@@ -498,10 +512,12 @@ public class JourneymapPlugin implements IClientPlugin + } + else JourneyPAC.LOGGER.debug("Start mapping " + event.dimension.location()); + dimension = event.dimension; +- // compute claims for this dimension +- buildDimension(opacApi.getClaimsManager().getDimension(dimension.location())); +- // show claims if enabled +- if (showClaims) showClaims(); ++ if (claimsLoaded && claimMap.isEmpty()) ++ { ++ JourneyPAC.LOGGER.debug("Mapping from MAPPING_STARTED"); ++ buildDimension(opacApi.getClaimsManager().ensureDimension(dimension.location())); ++ if (showClaims) showClaims(); ++ } + break; + } + case MAPPING_STOPPED: +@@ -509,7 +525,7 @@ public class JourneymapPlugin implements IClientPlugin + if (dimension == null) + { + JourneyPAC.LOGGER.warn("Stopped mapping " + event.dimension.location() +- + " but never started mapping"); ++ + " but mapping wasn't started"); + } + else if (!dimension.equals(event.dimension)) + { +@@ -519,6 +535,7 @@ public class JourneymapPlugin implements IClientPlugin + else JourneyPAC.LOGGER.debug("Stop mapping " + event.dimension.location()); + hideClaims(); + claimMap.clear(); ++ claimsLoaded = false; + dimension = null; + break; + } +diff --git a/common/src/main/java/journeypac/platform/JPACConfig.java b/common/src/main/java/journeypac/platform/JPACConfig.java +index 09f14e5..f4b207a 100644 +--- a/common/src/main/java/journeypac/platform/JPACConfig.java ++++ b/common/src/main/java/journeypac/platform/JPACConfig.java +@@ -59,7 +59,7 @@ public class JPACConfig implements ConfigFacade + public void setShowClaims(boolean show) + { + showClaims.set(show); +- showClaims.save(); ++ //showClaims.save(); + } + + public boolean getShowForceloads() +@@ -96,7 +96,7 @@ public class JPACConfig implements ConfigFacade + + public void fireConfigReload() + { +- onConfigReload.forEach(Runnable::run); ++ //onConfigReload.forEach(Runnable::run); + } + + public void onConfigReload(Runnable func) +diff --git a/common/src/main/resources/assets/journeypac/lang/en_us.json b/common/src/main/resources/assets/journeypac/lang/en_us.json +index 7ec2758..ffff9dc 100644 +--- a/common/src/main/resources/assets/journeypac/lang/en_us.json ++++ b/common/src/main/resources/assets/journeypac/lang/en_us.json +@@ -1,5 +1,6 @@ + { +- "button.journeypac.toggle_claims": "Show OPaC claims", ++ "button.journeypac.show_claims": "Show OPaC claims", ++ "button.journeypac.hide_claims": "Hide OPaC claims", + "key.journeypac.category": "JourneyPAC", + "key.journeypac.claim_mode": "Claim Chunk", + "key.journeypac.forceload_mode": "Forceload Chunk" +diff --git a/fabric/build.gradle b/fabric/build.gradle +index 9ccd0b1..8a6b5cb 100644 +--- a/fabric/build.gradle ++++ b/fabric/build.gradle +@@ -14,7 +14,8 @@ dependencies { + implementation project(":common") + + modImplementation "fuzs.forgeconfigapiport:forgeconfigapiport-fabric:8.0.0" // same as OPaC +- modImplementation "maven.modrinth:open-parties-and-claims:fabric-1.20.1-0.19.3" ++ modImplementation files("../libs/open-parties-and-claims-common-1.20.1-0.23.2.jar") ++ //modImplementation "maven.modrinth:open-parties-and-claims:fabric-1.20.1-0.19.3" + modApi("info.journeymap:journeymap-api:1.20-1.9-fabric-SNAPSHOT") {changing = true} + modRuntimeOnly "maven.modrinth:journeymap:1.20.1-5.9.12-fabric" + } +diff --git a/forge/build.gradle b/forge/build.gradle +index 00b6c00..9dd3aa1 100644 +--- a/forge/build.gradle ++++ b/forge/build.gradle +@@ -45,7 +45,8 @@ dependencies { + minecraft "net.minecraftforge:forge:${minecraft_version}-${forge_version}" + compileOnly project(":common") + +- implementation fg.deobf("maven.modrinth:open-parties-and-claims:forge-1.20.1-0.19.3") ++ implementation files("../libs/open-parties-and-claims-common-1.20.1-0.23.2.jar") ++ //implementation fg.deobf("maven.modrinth:open-parties-and-claims:forge-1.20.1-0.19.3") + compileOnly("info.journeymap:journeymap-api:1.20-1.9-SNAPSHOT") {changing = true} + runtimeOnly fg.deobf("maven.modrinth:journeymap:1.20.1-5.9.12-forge") + } diff --git a/archive/patches/journeymap/journeymap-1.20.1-5.10.1-forge-edit.jar b/archive/patches/journeymap/journeymap-1.20.1-5.10.1-forge-edit.jar new file mode 100644 index 0000000..43fbef6 Binary files /dev/null and b/archive/patches/journeymap/journeymap-1.20.1-5.10.1-forge-edit.jar differ diff --git a/archive/patches/open_parties_and_claims_attempt.diff b/archive/patches/open_parties_and_claims_attempt.diff new file mode 100644 index 0000000..74387ce --- /dev/null +++ b/archive/patches/open_parties_and_claims_attempt.diff @@ -0,0 +1,2487 @@ +I can't be asked to fix the HTML spam. + +This might apply to 3b2b78ae0c2a8991b198e92b0ec76ccda07f9e71(origin/1.20). + +diff --git a/Common/src/main/java/xaero/pac/client/claims/ClientClaimsManager.java b/Common/src/main/java/xaero/pac/client/claims/ClientClaimsManager.java +index be7ca90c..bc2a4fc4 100644 +--- a/Common/src/main/java/xaero/pac/client/claims/ClientClaimsManager.java ++++ b/Common/src/main/java/xaero/pac/client/claims/ClientClaimsManager.java +@@ -73,6 +73,9 @@ public final class ClientClaimsManager extends ClaimsManager()); + } + +- public void updatePlayerInfo(UUID playerId, String username, ClientClaimsManager claimsManager) { ++ public void updatePlayerInfo(UUID playerId, String username, String partyName, ClientClaimsManager claimsManager) { + ClientPlayerClaimInfo playerInfo = getInfo(playerId); +- playerInfo.setPlayerUsername(username); ++ String oldUsername = playerInfo.getPlayerUsername(); ++ String oldPartyName = playerInfo.getPartyName(); ++ playerInfo.setPlayerUsername(username, partyName); ++ if(!Objects.equals(oldUsername, username) || !Objects.equals(oldPartyName, partyName)) { ++ playerInfo.getTypedStream().map(Entry::getValue).forEach(dim -> { ++ ResourceLocation dimensionId = dim.getDimension(); ++ ClaimsManagerTracker tracker = claimsManager.getTracker(); ++ BiConsumer claimConsumer = (claim, pos) -> tracker.onChunkChange(dimensionId, pos.x, pos.z, claim); ++ dim.getTypedStream().forEach(posList -> { ++ PlayerChunkClaim state = posList.getClaimState(); ++ posList.getStream().forEach(pos -> claimConsumer.accept(state, pos)); ++ }); ++ }); ++ } + if(playerInfo.getClaimsColor(-1) == null) +- updateSubClaimInfo(playerId, -1, "", 0, claimsManager);//ensuring something is always there for the main sub ++ updateSubClaimInfo(playerId, -1, "", "", 0, claimsManager);//ensuring something is always there for the main sub + } + +- public void updateSubClaimInfo(UUID playerId, int subConfigIndex, String claimsName, Integer claimsColor, ClientClaimsManager claimsManager) { ++ public void updateSubClaimInfo(UUID playerId, int subConfigIndex, String partyName, String claimsName, Integer claimsColor, ClientClaimsManager claimsManager) { + ClientPlayerClaimInfo playerInfo = getInfo(playerId); + playerInfo.ensureSubClaim(subConfigIndex); ++ String oldPartyName = playerInfo.getPartyName(subConfigIndex); ++ playerInfo.setPartyName(subConfigIndex, partyName); ++ String oldName = playerInfo.getClaimsName(subConfigIndex); + playerInfo.setClaimsName(subConfigIndex, claimsName); + Integer oldColor = playerInfo.getClaimsColor(subConfigIndex); + playerInfo.setClaimsColor(subConfigIndex, claimsColor); +- if(!Objects.equals(oldColor, claimsColor)) { ++ if(!Objects.equals(oldPartyName, partyName) || !Objects.equals(oldName, claimsName) || !Objects.equals(oldColor, claimsColor)) { + boolean notManyClaims = playerInfo.getClaimCount() < 1024; + boolean isSub = subConfigIndex != -1; + ClaimsManagerTracker tracker = claimsManager.getTracker(); +diff --git a/Common/src/main/java/xaero/pac/client/claims/player/api/IClientPlayerClaimInfoAPI.java b/Common/src/main/java/xaero/pac/client/claims/player/api/IClientPlayerClaimInfoAPI.java +index 19aa1134..14fd8393 100644 +--- a/Common/src/main/java/xaero/pac/client/claims/player/api/IClientPlayerClaimInfoAPI.java ++++ b/Common/src/main/java/xaero/pac/client/claims/player/api/IClientPlayerClaimInfoAPI.java +@@ -47,12 +47,19 @@ public interface IClientPlayerClaimInfoAPI extends IPlayerClaimInfoAPI { + @Override + public String getPlayerUsername(); + ++ @Override ++ public String getPartyName(); ++ + @Override + public String getClaimsName(); + + @Override + public int getClaimsColor(); + ++ @Nullable ++ @Override ++ String getPartyName(int subConfigIndex); ++ + @Nullable + @Override + String getClaimsName(int subConfigIndex); +diff --git a/Common/src/main/java/xaero/pac/client/claims/player/sub/ClientPlayerSubClaimInfo.java b/Common/src/main/java/xaero/pac/client/claims/player/sub/ClientPlayerSubClaimInfo.java +index 164471c9..3c6780a3 100644 +--- a/Common/src/main/java/xaero/pac/client/claims/player/sub/ClientPlayerSubClaimInfo.java ++++ b/Common/src/main/java/xaero/pac/client/claims/player/sub/ClientPlayerSubClaimInfo.java +@@ -21,6 +21,7 @@ package xaero.pac.client.claims.player.sub; + public final class ClientPlayerSubClaimInfo { + + private final int subIndex; ++ private String partyName; + private String claimsName; + private Integer claimsColor; + +@@ -28,20 +29,27 @@ public final class ClientPlayerSubClaimInfo { + this.subIndex = subIndex; + } + +- public Integer getClaimsColor() { +- return claimsColor; ++ public String getPartyName() { ++ return partyName; + } + + public String getClaimsName() { + return claimsName; + } + +- public void setClaimsColor(Integer claimsColor) { +- this.claimsColor = claimsColor; ++ public Integer getClaimsColor() { ++ return claimsColor; ++ } ++ ++ public void setPartyName(String partyName) { ++ this.partyName = partyName; + } + + public void setClaimsName(String claimsName) { + this.claimsName = claimsName; + } + ++ public void setClaimsColor(Integer claimsColor) { ++ this.claimsColor = claimsColor; ++ } + } +diff --git a/Common/src/main/java/xaero/pac/client/claims/sync/ClientClaimsSyncHandler.java b/Common/src/main/java/xaero/pac/client/claims/sync/ClientClaimsSyncHandler.java +index 196ece1d..7870fc10 100644 +--- a/Common/src/main/java/xaero/pac/client/claims/sync/ClientClaimsSyncHandler.java ++++ b/Common/src/main/java/xaero/pac/client/claims/sync/ClientClaimsSyncHandler.java +@@ -47,12 +47,12 @@ public class ClientClaimsSyncHandler { + this.claimsManager = claimsManager; + } + +- public void onPlayerInfo(UUID playerId, String username) { +- claimsManager.getPlayerClaimInfoManager().updatePlayerInfo(playerId, username, claimsManager); ++ public void onPlayerInfo(UUID playerId, String username, String partyName) { ++ claimsManager.getPlayerClaimInfoManager().updatePlayerInfo(playerId, username, partyName, claimsManager); + } + +- public void onSubClaimInfo(UUID playerId, int subConfigIndex, String claimsName, Integer claimsColor) { +- claimsManager.getPlayerClaimInfoManager().updateSubClaimInfo(playerId, subConfigIndex, claimsName, claimsColor, claimsManager); ++ public void onSubClaimInfo(UUID playerId, int subConfigIndex, String partyName, String claimsName, Integer claimsColor) { ++ claimsManager.getPlayerClaimInfoManager().updateSubClaimInfo(playerId, subConfigIndex, partyName, claimsName, claimsColor, claimsManager); + } + + public void onClaimState(PlayerChunkClaim claim) { +diff --git a/Common/src/main/java/xaero/pac/common/claims/ClaimsManager.java b/Common/src/main/java/xaero/pac/common/claims/ClaimsManager.java +index e7b0d87a..334f9d86 100644 +--- a/Common/src/main/java/xaero/pac/common/claims/ClaimsManager.java ++++ b/Common/src/main/java/xaero/pac/common/claims/ClaimsManager.java +@@ -25,6 +25,7 @@ import it.unimi.dsi.fastutil.longs.Long2ObjectOpenHashMap; + import net.minecraft.core.BlockPos; + import net.minecraft.resources.ResourceLocation; + import net.minecraft.world.level.ChunkPos; ++import org.jetbrains.annotations.NotNull; + import xaero.pac.common.claims.player.PlayerChunkClaim; + import xaero.pac.common.claims.player.PlayerClaimInfo; + import xaero.pac.common.claims.player.PlayerClaimInfoManager; +@@ -85,7 +86,8 @@ public abstract class ClaimsManager + playerClaimInfoManager.clear(); + } + +- protected WCM ensureDimension(ResourceLocation dim) { ++ @Nonnull ++ public WCM ensureDimension(@Nonnull ResourceLocation dim) { + return dimensions.computeIfAbsent(dim, d -> create(d, new Long2ObjectOpenHashMap<>())); + } + +diff --git a/Common/src/main/java/xaero/pac/common/claims/api/IClaimsManagerAPI.java b/Common/src/main/java/xaero/pac/common/claims/api/IClaimsManagerAPI.java +index f043b8a4..aed7732a 100644 +--- a/Common/src/main/java/xaero/pac/common/claims/api/IClaimsManagerAPI.java ++++ b/Common/src/main/java/xaero/pac/common/claims/api/IClaimsManagerAPI.java +@@ -91,6 +91,9 @@ public interface IClaimsManagerAPI { + @Nullable + public IDimensionClaimsManagerAPI getDimension(@Nonnull ResourceLocation dimension); + ++ @Nonnull ++ public IDimensionClaimsManagerAPI ensureDimension(@Nonnull ResourceLocation dimension); ++ + /** + * Gets the claim change tracker that lets you register claim change listeners. + *

+diff --git a/Common/src/main/java/xaero/pac/common/claims/player/IPlayerClaimInfo.java b/Common/src/main/java/xaero/pac/common/claims/player/IPlayerClaimInfo.java +index f1d4a43a..7a630017 100644 +--- a/Common/src/main/java/xaero/pac/common/claims/player/IPlayerClaimInfo.java ++++ b/Common/src/main/java/xaero/pac/common/claims/player/IPlayerClaimInfo.java +@@ -43,7 +43,10 @@ public interface IPlayerClaimInfo> extends + @Nonnull + @Override + public String getPlayerUsername(); +- ++ ++ @Override ++ public String getPartyName(); ++ + @Nonnull + public Stream> getTypedStream(); + +diff --git a/Common/src/main/java/xaero/pac/common/claims/player/PlayerClaimInfo.java b/Common/src/main/java/xaero/pac/common/claims/player/PlayerClaimInfo.java +index ade11a54..e9e71926 100644 +--- a/Common/src/main/java/xaero/pac/common/claims/player/PlayerClaimInfo.java ++++ b/Common/src/main/java/xaero/pac/common/claims/player/PlayerClaimInfo.java +@@ -39,6 +39,7 @@ public abstract class PlayerClaimInfo + protected final PCI self; + protected final M manager; + private String playerUsername; ++ private String partyName; + protected final UUID playerId; + protected final Map claims; + +@@ -118,9 +119,19 @@ public abstract class PlayerClaimInfo + public String getPlayerUsername() { + return playerUsername; + } +- +- public void setPlayerUsername(String playerUsername) { ++ ++ public String getUserPartyName() { ++ return partyName; ++ } ++ ++ public void setPlayerUsername(String playerUsername, String partyName) { + this.playerUsername = playerUsername; ++ this.partyName = partyName; ++ } ++ ++ @Override ++ public String getPartyName() { ++ return getPartyName(-1); + } + + @Override +diff --git a/Common/src/main/java/xaero/pac/common/claims/player/api/IPlayerClaimInfoAPI.java b/Common/src/main/java/xaero/pac/common/claims/player/api/IPlayerClaimInfoAPI.java +index e3f1ded9..e3c714ac 100644 +--- a/Common/src/main/java/xaero/pac/common/claims/player/api/IPlayerClaimInfoAPI.java ++++ b/Common/src/main/java/xaero/pac/common/claims/player/api/IPlayerClaimInfoAPI.java +@@ -62,6 +62,17 @@ public interface IPlayerClaimInfoAPI { + @Nonnull + public String getPlayerUsername(); + ++ /** ++ * Gets the name of the claim owner's party. ++ *

++ * Will be empty if the player is not in a party or has their claims ++ * configured to not show their party name. ++ * ++ * @return the name of the claim owner's party, possibly empty ++ */ ++ @Nullable ++ public String getPartyName(); ++ + /** + * Gets the currently configured main custom name of the player's claims. + *

+@@ -81,6 +92,17 @@ public interface IPlayerClaimInfoAPI { + */ + public int getClaimsColor(); + ++ /** ++ * Gets the name of the sub-claim owner's party. ++ *

++ * Returns null if no such sub-claim exists or the claim owner's party, if configured. ++ * ++ * @param subConfigIndex the index of the sub-config used by the sub-claim ++ * @return the name of the sub-claim owner's party, possibly empty ++ */ ++ @Nullable ++ public String getPartyName(int subConfigIndex); ++ + /** + * Gets the currently configured custom name of the player's sub-claim + * with a specified index. +diff --git a/Common/src/main/java/xaero/pac/common/packet/claims/ClientboundClaimOwnerPropertiesPacket.java b/Common/src/main/java/xaero/pac/common/packet/claims/ClientboundClaimOwnerPropertiesPacket.java +index c3a622ef..31fc0946 100644 +--- a/Common/src/main/java/xaero/pac/common/packet/claims/ClientboundClaimOwnerPropertiesPacket.java ++++ b/Common/src/main/java/xaero/pac/common/packet/claims/ClientboundClaimOwnerPropertiesPacket.java +@@ -56,6 +56,7 @@ public class ClientboundClaimOwnerPropertiesPacket extends LazyPacket 128) { ++ OpenPartiesAndClaims.LOGGER.info("Received claim owner properties list with invalid party name!"); ++ return null; ++ } + UUID playerId = propertiesEntryNbt.getUUID("p"); +- propertiesList.add(new PlayerProperties(playerId, username)); ++ propertiesList.add(new PlayerProperties(playerId, username, partyName)); + } + return new ClientboundClaimOwnerPropertiesPacket(propertiesList); + } catch(Throwable t) { +@@ -103,7 +109,7 @@ public class ClientboundClaimOwnerPropertiesPacket extends LazyPacket propertiesList = new ArrayList<>(propertiesListTag.size()); + for (int i = 0; i < propertiesListTag.size(); i++) { + CompoundTag propertiesEntryNbt = propertiesListTag.getCompound(i); ++ String partyName = propertiesEntryNbt.getString("nn"); ++ if(partyName.length() > 128) { ++ OpenPartiesAndClaims.LOGGER.info("Received sub-claim properties list with invalid party name!"); ++ return null; ++ } + String claimsName = propertiesEntryNbt.getString("n"); + if(claimsName.length() > 128) { + OpenPartiesAndClaims.LOGGER.info("Received sub-claim properties list with invalid claims name!"); +@@ -94,7 +101,7 @@ public class ClientboundSubClaimPropertiesPacket extends LazyPacket playerClaimInfoManagerIO = PlayerClaimInfoManagerIO.Builder.begin() + .setServerClaimsManager(serverClaimsManager) + .setFileExtension(".nbt") +- .setSerializationHandler(new SimpleSerializationHandler<>(PlayerClaimInfoNbtSerializer.Builder.begin().build())) ++ .setSerializationHandler(new SimpleSerializationHandler<>(PlayerClaimInfoNbtSerializer.Builder.begin().build(server))) + .setSerializedDataFileIO(new SimpleNBTSerializedDataFileIO<>()) + .setIoThreadWorker(ioThreadWorker) + .setFileIOHelper(fileIOHelper) +diff --git a/Common/src/main/java/xaero/pac/common/server/claims/ServerClaimsManager.java b/Common/src/main/java/xaero/pac/common/server/claims/ServerClaimsManager.java +index ef756dce..34be456e 100644 +--- a/Common/src/main/java/xaero/pac/common/server/claims/ServerClaimsManager.java ++++ b/Common/src/main/java/xaero/pac/common/server/claims/ServerClaimsManager.java +@@ -454,8 +454,8 @@ public final class ServerClaimsManager extends ClaimsManager> ex + @Nonnull + @Override + public String getPlayerUsername(); +- ++ + @Nonnull + @Override + public Stream> getTypedStream(); +diff --git a/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimInfo.java b/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimInfo.java +index 35e145fe..5d74ef1e 100644 +--- a/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimInfo.java ++++ b/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimInfo.java +@@ -19,11 +19,13 @@ + package xaero.pac.common.server.claims.player; + + import net.minecraft.resources.ResourceLocation; ++import net.minecraft.server.MinecraftServer; + import xaero.pac.common.claims.player.*; + import xaero.pac.common.parties.party.IPartyPlayerInfo; + import xaero.pac.common.parties.party.ally.IPartyAlly; + import xaero.pac.common.parties.party.member.IPartyMember; + import xaero.pac.common.server.IServerData; ++import xaero.pac.common.server.ServerData; + import xaero.pac.common.server.claims.IServerClaimsManager; + import xaero.pac.common.server.claims.IServerDimensionClaimsManager; + import xaero.pac.common.server.claims.IServerRegionClaims; +@@ -31,6 +33,7 @@ import xaero.pac.common.server.claims.player.task.PlayerClaimReplaceSpreadoutTas + import xaero.pac.common.server.config.ServerConfig; + import xaero.pac.common.server.expiration.ObjectManagerIOExpirableObject; + import xaero.pac.common.server.info.ServerInfo; ++import xaero.pac.common.server.parties.party.IPartyManager; + import xaero.pac.common.server.parties.party.IServerParty; + import xaero.pac.common.server.player.config.IPlayerConfig; + import xaero.pac.common.server.player.config.IPlayerConfigManager; +@@ -47,7 +50,8 @@ import java.util.UUID; + import java.util.stream.Stream; + + public final class ServerPlayerClaimInfo extends PlayerClaimInfo implements IServerPlayerClaimInfo, ObjectManagerIOExpirableObject { +- ++ ++ private final MinecraftServer server; + private IPlayerConfig playerConfig; + private boolean dirty; + protected boolean beenUsed; +@@ -56,8 +60,9 @@ public final class ServerPlayerClaimInfo extends PlayerClaimInfo replaceTaskQueue; + + public ServerPlayerClaimInfo(IPlayerConfig playerConfig, String username, UUID playerId, Map claims, +- ServerPlayerClaimInfoManager manager, Deque replaceSpreadoutTasks) { ++ MinecraftServer server, ServerPlayerClaimInfoManager manager, Deque replaceSpreadoutTasks) { + super(username, playerId, claims, manager); ++ this.server = server; + this.playerConfig = playerConfig; + this.replaceTaskQueue = replaceSpreadoutTasks; + if(manager.getExpirationHandler() != null) +@@ -107,9 +112,9 @@ public final class ServerPlayerClaimInfo extends PlayerClaimInfo> partyManager = serverData.getPartyManager(); ++ UUID playerId = playerConfig.getPlayerId(); ++ if (playerId != null) { ++ IServerParty playerParty = partyManager.getPartyByMember(playerId); ++ if (playerParty != null) { ++ IPlayerConfig ownerConfig = serverData.getPlayerConfigs().getLoadedConfig(playerId); ++ return ownerConfig.getEffective(PlayerConfigOptions.PARTY_NAME); ++ } ++ } ++ } ++ } ++ return ""; ++ } ++ + @Override + public String getClaimsName() { + return playerConfig.getEffective(PlayerConfigOptions.CLAIMS_NAME); +@@ -167,6 +191,29 @@ public final class ServerPlayerClaimInfo extends PlayerClaimInfo> partyManager = serverData.getPartyManager(); ++ UUID playerId = subConfig.getPlayerId(); ++ if (playerId != null) { ++ IServerParty playerParty = partyManager.getPartyByMember(playerId); ++ if (playerParty != null) { ++ IPlayerConfig ownerConfig = serverData.getPlayerConfigs().getLoadedConfig(playerId); ++ return ownerConfig.getEffective(PlayerConfigOptions.PARTY_NAME); ++ } ++ } ++ } ++ } ++ return ""; ++ } ++ + @Nullable + @Override + public String getClaimsName(int subConfigIndex) { +diff --git a/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimInfoManager.java b/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimInfoManager.java +index 1da8439d..bbbd8d08 100644 +--- a/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimInfoManager.java ++++ b/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimInfoManager.java +@@ -116,7 +116,7 @@ public final class ServerPlayerClaimInfoManager extends PlayerClaimInfoManager claims) { +- return new ServerPlayerClaimInfo(getConfig(playerId), username, playerId, claims, this, new ArrayDeque<>()); ++ return new ServerPlayerClaimInfo(getConfig(playerId), username, playerId, claims, server, this, new ArrayDeque<>()); + } + + @Override +diff --git a/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimWelcomer.java b/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimWelcomer.java +index 94ceb529..367de963 100644 +--- a/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimWelcomer.java ++++ b/Common/src/main/java/xaero/pac/common/server/claims/player/ServerPlayerClaimWelcomer.java +@@ -73,8 +73,9 @@ public class ServerPlayerClaimWelcomer { + else + properDesc = adaptiveLocalizer.getFor(player, "gui.xaero_pac_title_entered_claim", playerClaimInfo.getPlayerUsername(), forceloadedComponent); + if (customName != null && !customName.isEmpty()) { +- subTitleText = Component.literal(customName + " - "); +- subTitleText.getSiblings().add(properDesc); ++ subTitleText = Component.literal(customName); ++ //subTitleText = Component.literal(customName + " - "); ++ //subTitleText.getSiblings().add(properDesc); + } else + subTitleText = properDesc; + } +diff --git a/Common/src/main/java/xaero/pac/common/server/claims/player/io/PlayerClaimInfoManagerIO.java b/Common/src/main/java/xaero/pac/common/server/claims/player/io/PlayerClaimInfoManagerIO.java +index 8c5e9607..c33c13fa 100644 +--- a/Common/src/main/java/xaero/pac/common/server/claims/player/io/PlayerClaimInfoManagerIO.java ++++ b/Common/src/main/java/xaero/pac/common/server/claims/player/io/PlayerClaimInfoManagerIO.java +@@ -113,7 +113,7 @@ public final class PlayerClaimInfoManagerIO + ServerPlayerClaimInfo playerInfo = serverClaimsManager.getPlayerInfo(loadedObject.getPlayerId()); + IPlayerConfig playerConfig = playerInfo.getConfig(); + if(!Objects.equals(loadedObject.getPlayerId(), PlayerConfig.EXPIRED_CLAIM_UUID) && !Objects.equals(loadedObject.getPlayerId(), PlayerConfig.SERVER_CLAIM_UUID)) +- playerInfo.setPlayerUsername(loadedObject.getPlayerUsername()); ++ playerInfo.setPlayerUsername(loadedObject.getPlayerUsername(), loadedObject.getPartyName()); + playerInfo.setRegisteredActivity(loadedObject.getRegisteredActivity()); + loadedObject.getFullStream().forEach( + e -> { +diff --git a/Common/src/main/java/xaero/pac/common/server/claims/player/io/serialization/nbt/PlayerClaimInfoNbtSerializer.java b/Common/src/main/java/xaero/pac/common/server/claims/player/io/serialization/nbt/PlayerClaimInfoNbtSerializer.java +index 89569d0e..1ae2e108 100644 +--- a/Common/src/main/java/xaero/pac/common/server/claims/player/io/serialization/nbt/PlayerClaimInfoNbtSerializer.java ++++ b/Common/src/main/java/xaero/pac/common/server/claims/player/io/serialization/nbt/PlayerClaimInfoNbtSerializer.java +@@ -20,6 +20,7 @@ package xaero.pac.common.server.claims.player.io.serialization.nbt; + + import net.minecraft.nbt.CompoundTag; + import net.minecraft.resources.ResourceLocation; ++import net.minecraft.server.MinecraftServer; + import xaero.pac.common.claims.player.PlayerDimensionClaims; + import xaero.pac.common.server.claims.player.ServerPlayerClaimInfo; + import xaero.pac.common.server.claims.player.ServerPlayerClaimInfoManager; +@@ -31,12 +32,14 @@ import java.util.Map; + import java.util.UUID; + + public final class PlayerClaimInfoNbtSerializer implements SimpleSerializer { +- ++ ++ private final MinecraftServer server; + private final PlayerDimensionClaimsNbtSerializer playerDimensionClaimsNbtSerializer; + +- private PlayerClaimInfoNbtSerializer(PlayerDimensionClaimsNbtSerializer playerDimensionClaimsNbtSerializer) { ++ private PlayerClaimInfoNbtSerializer(PlayerDimensionClaimsNbtSerializer playerDimensionClaimsNbtSerializer, MinecraftServer server) { + super(); + this.playerDimensionClaimsNbtSerializer = playerDimensionClaimsNbtSerializer; ++ this.server = server; + } + + @Override +@@ -56,7 +59,7 @@ public final class PlayerClaimInfoNbtSerializer implements SimpleSerializer claims = new HashMap<>(); + dimensionsTag.getAllKeys().forEach(key -> claims.put(new ResourceLocation(key), playerDimensionClaimsNbtSerializer.deserialize(id, key, dimensionsTag.getCompound(key)))); +- ServerPlayerClaimInfo result = new ServerPlayerClaimInfo(manager.getConfig(id), username, id, claims, manager, new ArrayDeque<>()); ++ ServerPlayerClaimInfo result = new ServerPlayerClaimInfo(manager.getConfig(id), username, id, claims, server, manager, new ArrayDeque<>()); + result.setRegisteredActivity(nbt.getLong("confirmedActivity")); + return result; + } +@@ -70,8 +73,8 @@ public final class PlayerClaimInfoNbtSerializer implements SimpleSerializer packetBuilder = +- Lists.newArrayList(new ClientboundClaimOwnerPropertiesPacket.PlayerProperties(playerInfo.getPlayerId(), playerInfo.getPlayerUsername())); ++ Lists.newArrayList(new ClientboundClaimOwnerPropertiesPacket.PlayerProperties(playerInfo.getPlayerId(), playerInfo.getPlayerUsername(), playerInfo.getPartyName())); + if(syncType == ServerConfig.ClaimsSyncType.ALL || Objects.equals(PlayerConfig.SERVER_CLAIM_UUID, playerInfo.getPlayerId())) { + for(ServerPlayer player : players.getPlayers()) + syncClaimOwnerProperties(packetBuilder, player); +@@ -181,6 +187,17 @@ public final class ClaimsManagerSynchronizer implements IClaimsManagerSynchroniz + public ClientboundSubClaimPropertiesPacket.SubClaimProperties getSubClaimPropertiesForSync(IPlayerConfig subConfig, boolean afterReset){ + String claimsName; + Integer claimsColor; ++ String partyName = ""; ++ UUID playerId = subConfig.getPlayerId(); ++ if (playerId != null && subConfig.getEffective(PlayerConfigOptions.DISPLAY_CLAIM_OWNER_AS_PARTY)) { ++ var serverData = ServerData.from(server); ++ IPartyManager> partyManager = serverData.getPartyManager(); ++ IServerParty playerParty = partyManager.getPartyByMember(playerId); ++ if (playerParty != null) { ++ IPlayerConfig ownerConfig = serverData.getPlayerConfigs().getLoadedConfig(playerId); ++ partyName = ownerConfig.getEffective(PlayerConfigOptions.PARTY_NAME); ++ } ++ } + if(subConfig instanceof PlayerSubConfig) { + claimsName = subConfig.getRaw(PlayerConfigOptions.CLAIMS_NAME); + claimsColor = subConfig.applyDefaultReplacer(PlayerConfigOptions.CLAIMS_COLOR, subConfig.getRaw(PlayerConfigOptions.CLAIMS_COLOR)); +@@ -190,7 +207,7 @@ public final class ClaimsManagerSynchronizer implements IClaimsManagerSynchroniz + } + if(afterReset && claimsName == null && claimsColor == null) + return null; +- return new ClientboundSubClaimPropertiesPacket.SubClaimProperties(subConfig.getPlayerId(), subConfig.getSubIndex(), claimsName, claimsColor); ++ return new ClientboundSubClaimPropertiesPacket.SubClaimProperties(playerId, subConfig.getSubIndex(), partyName, claimsName, claimsColor); + } + + @Override +diff --git a/Common/src/main/java/xaero/pac/common/server/claims/sync/player/ClaimsManagerPlayerClaimOwnerPropertiesSync.java b/Common/src/main/java/xaero/pac/common/server/claims/sync/player/ClaimsManagerPlayerClaimOwnerPropertiesSync.java +index fa2ab977..04b7ec8f 100644 +--- a/Common/src/main/java/xaero/pac/common/server/claims/sync/player/ClaimsManagerPlayerClaimOwnerPropertiesSync.java ++++ b/Common/src/main/java/xaero/pac/common/server/claims/sync/player/ClaimsManagerPlayerClaimOwnerPropertiesSync.java +@@ -65,7 +65,8 @@ public final class ClaimsManagerPlayerClaimOwnerPropertiesSync extends ClaimsMan + private void buildClaimPropertiesPacket(List packetBuilder, ServerPlayerClaimInfo pi, ServerPlayer player) { + UUID playerId = pi.getPlayerId(); + String username = pi.getPlayerUsername(); +- packetBuilder.add(new ClientboundClaimOwnerPropertiesPacket.PlayerProperties(playerId, username)); ++ String partyName = pi.getPartyName(); ++ packetBuilder.add(new ClientboundClaimOwnerPropertiesPacket.PlayerProperties(playerId, username, partyName)); + if(packetBuilder.size() == ClientboundClaimOwnerPropertiesPacket.MAX_PROPERTIES) { + synchronizer.syncClaimOwnerProperties(packetBuilder, player); + packetBuilder.clear(); +diff --git a/Common/src/main/java/xaero/pac/common/server/config/ServerConfig.java b/Common/src/main/java/xaero/pac/common/server/config/ServerConfig.java +index 0cabd680..300d38bf 100644 +--- a/Common/src/main/java/xaero/pac/common/server/config/ServerConfig.java ++++ b/Common/src/main/java/xaero/pac/common/server/config/ServerConfig.java +@@ -687,6 +687,7 @@ public class ServerConfig { + //.worldRestart() + .defineListAllowEmpty(Lists.newArrayList("playerConfigurablePlayerConfigOptions"), + () -> Lists.newArrayList( ++ "claims.displayClaimAsPartyOwned", + "claims.protectClaimedChunks", + "claims.forceload.enabled", + "claims.name", +diff --git a/Common/src/main/java/xaero/pac/common/server/parties/party/PartyManager.java b/Common/src/main/java/xaero/pac/common/server/parties/party/PartyManager.java +index 23ffc0e3..ce660f59 100644 +--- a/Common/src/main/java/xaero/pac/common/server/parties/party/PartyManager.java ++++ b/Common/src/main/java/xaero/pac/common/server/parties/party/PartyManager.java +@@ -20,9 +20,21 @@ package xaero.pac.common.server.parties.party; + + import net.minecraft.server.MinecraftServer; + import net.minecraft.world.entity.player.Player; ++import xaero.pac.common.claims.player.IPlayerChunkClaim; ++import xaero.pac.common.claims.player.IPlayerClaimPosList; ++import xaero.pac.common.claims.player.IPlayerDimensionClaims; ++import xaero.pac.common.parties.party.IPartyPlayerInfo; ++import xaero.pac.common.parties.party.ally.IPartyAlly; ++import xaero.pac.common.parties.party.member.IPartyMember; + import xaero.pac.common.parties.party.member.PartyMember; + import xaero.pac.common.parties.party.member.PartyMemberRank; ++import xaero.pac.common.server.IServerData; + import xaero.pac.common.server.ServerData; ++import xaero.pac.common.server.claims.IServerClaimsManager; ++import xaero.pac.common.server.claims.IServerDimensionClaimsManager; ++import xaero.pac.common.server.claims.IServerRegionClaims; ++import xaero.pac.common.server.claims.player.IServerPlayerClaimInfo; ++import xaero.pac.common.server.claims.player.ServerPlayerClaimInfo; + import xaero.pac.common.server.config.ServerConfig; + import xaero.pac.common.server.expiration.ObjectManagerIOExpirableObjectManager; + import xaero.pac.common.server.io.ObjectManagerIOManager; +@@ -31,6 +43,7 @@ import xaero.pac.common.server.parties.party.io.PartyManagerIO; + import xaero.pac.common.server.parties.party.sync.PartySynchronizer; + import xaero.pac.common.server.parties.party.task.PartyRemovalSpreadoutTask; + import xaero.pac.common.server.player.config.IPlayerConfigManager; ++import xaero.pac.common.server.player.config.api.PlayerConfigOptions; + import xaero.pac.common.server.task.ServerSpreadoutQueuedTaskHandler; + import xaero.pac.common.util.linked.LinkedChain; + +@@ -211,15 +224,27 @@ public final class PartyManager implements IPartyManager, ObjectMan + + public void onMemberAdded(ServerParty party, PartyMember m) { + partiesByMember.put(m.getUUID(), party); +- if(loaded) ++ if(loaded) { + getPartySynchronizer().syncToMember(m, party); ++ IServerData>, IServerDimensionClaimsManager>, IServerParty> serverData = ServerData.from(server); ++ IServerPlayerClaimInfo> playerClaimInfo = serverData.getServerClaimsManager().getPlayerInfo(m.getUUID()); ++ String partyName = party.getDefaultName(); ++ String partyCustomName = serverData.getPlayerConfigs().getLoadedConfig(party.getOwner().getUUID()).getEffective(PlayerConfigOptions.PARTY_NAME); ++ if(!partyCustomName.isEmpty()) ++ partyName = partyCustomName; ++ ((ServerPlayerClaimInfo)(Object)playerClaimInfo).setPlayerUsername(playerClaimInfo.getPlayerUsername(), partyName); ++ } + } + + public void onMemberRemoved(ServerParty party, PartyMember m) { + if(partiesByMember.get(m.getUUID()) == party) {//might not be true when there are inconsistencies in the saved data or during party spreadout removal + partiesByMember.remove(m.getUUID()); +- if (loaded) ++ if (loaded) { + getPartySynchronizer().syncToMember(m, null); ++ IServerData>, IServerDimensionClaimsManager>, IServerParty> serverData = ServerData.from(server); ++ IServerPlayerClaimInfo> playerClaimInfo = serverData.getServerClaimsManager().getPlayerInfo(m.getUUID()); ++ ((ServerPlayerClaimInfo)(Object)playerClaimInfo).setPlayerUsername(playerClaimInfo.getPlayerUsername(), ""); ++ } + } + } + +diff --git a/Common/src/main/java/xaero/pac/common/server/player/PlayerLoginHandler.java b/Common/src/main/java/xaero/pac/common/server/player/PlayerLoginHandler.java +index 6fc68307..63f6685d 100644 +--- a/Common/src/main/java/xaero/pac/common/server/player/PlayerLoginHandler.java ++++ b/Common/src/main/java/xaero/pac/common/server/player/PlayerLoginHandler.java +@@ -44,6 +44,8 @@ import xaero.pac.common.server.parties.party.IPartyManager; + import xaero.pac.common.server.parties.party.IServerParty; + import xaero.pac.common.server.parties.party.sync.PartySynchronizer; + import xaero.pac.common.server.parties.party.sync.player.PlayerFullPartySync; ++import xaero.pac.common.server.player.config.IPlayerConfig; ++import xaero.pac.common.server.player.config.api.PlayerConfigOptions; + import xaero.pac.common.server.player.config.sync.task.PlayerConfigSyncSpreadoutTask; + import xaero.pac.common.server.player.data.ServerPlayerData; + import xaero.pac.common.server.player.data.api.ServerPlayerDataAPI; +@@ -56,7 +58,14 @@ public class PlayerLoginHandler { + OpenPartiesAndClaims.INSTANCE.getPacketHandler().sendToPlayer(player, new ServerLoginHandshakePacket()); + + IServerPlayerClaimInfo> playerClaimInfo = serverData.getServerClaimsManager().getPlayerInfo(player.getUUID()); +- ((ServerPlayerClaimInfo)(Object)playerClaimInfo).setPlayerUsername(player.getGameProfile().getName()); ++ IPartyManager> partyManager = serverData.getPartyManager(); ++ IServerParty playerParty = partyManager.getPartyByMember(player.getUUID()); ++ String partyName = ""; ++ if (playerParty != null) { ++ IPlayerConfig ownerConfig = serverData.getPlayerConfigs().getLoadedConfig(player.getUUID()); ++ partyName = ownerConfig.getEffective(PlayerConfigOptions.PARTY_NAME); ++ } ++ ((ServerPlayerClaimInfo)(Object)playerClaimInfo).setPlayerUsername(player.getGameProfile().getName(), partyName); + + serverData.getForceLoadManager().updateTicketsFor(serverData.getPlayerConfigs(), player.getUUID(), false); + +diff --git a/Common/src/main/java/xaero/pac/common/server/player/config/PlayerConfig.java b/Common/src/main/java/xaero/pac/common/server/player/config/PlayerConfig.java +index 101675eb..ff315496 100644 +--- a/Common/src/main/java/xaero/pac/common/server/player/config/PlayerConfig.java ++++ b/Common/src/main/java/xaero/pac/common/server/player/config/PlayerConfig.java +@@ -176,6 +176,10 @@ public class PlayerConfig + claimsManager.getClaimsManagerSynchronizer().syncClaimLimits(this, onlinePlayer); + } + } ++ if (option == DISPLAY_CLAIM_OWNER_AS_PARTY) { ++ IServerClaimsManager claimsManager = manager.getClaimsManager(); ++ claimsManager.getClaimsManagerSynchronizer().syncToPlayersSubClaimPropertiesUpdate(this); ++ } + if(option == FORCELOAD || option == OFFLINE_FORCELOAD || option == BONUS_CHUNK_FORCELOADS) + manager.getForceLoadTicketManager().updateTicketsFor(manager, playerId, false); + else if(option == PARTY_NAME) { +diff --git a/Common/src/main/java/xaero/pac/common/server/player/config/api/PlayerConfigOptions.java b/Common/src/main/java/xaero/pac/common/server/player/config/api/PlayerConfigOptions.java +index 048ae05f..d3af811b 100644 +--- a/Common/src/main/java/xaero/pac/common/server/player/config/api/PlayerConfigOptions.java ++++ b/Common/src/main/java/xaero/pac/common/server/player/config/api/PlayerConfigOptions.java +@@ -67,6 +67,10 @@ public class PlayerConfigOptions { + * The display color of the player's claimed chunks. + */ + public static final IPlayerConfigOptionSpecAPI CLAIMS_COLOR; ++ /** ++ * Whether to display a player's claims as belonging to their party. ++ */ ++ public static final IPlayerConfigOptionSpecAPI DISPLAY_CLAIM_OWNER_AS_PARTY; + /** + * Whether the player's claimed chunks are protected at all. + */ +@@ -420,6 +424,12 @@ public class PlayerConfigOptions { + .setComment("When enabled, the sharable positions of players from the mutual ally parties of the party that you are in are shared with your game client, which can be used by other mods, e.g. to display allies on a map.") + .setCategory(PlayerConfigOptionCategory.GENERAL_PARTY) + .build(allOptions); ++ DISPLAY_CLAIM_OWNER_AS_PARTY = PlayerConfigOptionSpec.FinalBuilder.begin(Boolean.class) ++ .setId(PlayerConfig.PLAYER_CONFIG_ROOT_DOT + "claims.displayClaimAsPartyOwned") ++ .setDefaultValue(false) ++ .setComment("When enabled, claims will be displayed as being owned by your party.") ++ .setCategory(PlayerConfigOptionCategory.GENERAL_CLAIMS) ++ .build(allOptions); + PROTECT_CLAIMED_CHUNKS = PlayerConfigOptionSpec.FinalBuilder.begin(Boolean.class) + .setId(PlayerConfig.PLAYER_CONFIG_ROOT_DOT + "claims.protectClaimedChunks") + .setDefaultValue(true) +diff --git a/Common/src/main/resources/assets/openpartiesandclaims/lang/en_us.json b/Common/src/main/resources/assets/openpartiesandclaims/lang/en_us.json +index 2dd4a31a..7f4f7128 100644 +--- a/Common/src/main/resources/assets/openpartiesandclaims/lang/en_us.json ++++ b/Common/src/main/resources/assets/openpartiesandclaims/lang/en_us.json +@@ -264,6 +264,8 @@ + "gui.xaero_pac_player_config_tooltip_playerConfig.claims.bonusChunkClaims" : "default", + "gui.xaero_pac_player_config_playerConfig.claims.bonusChunkForceloads" : "Bonus Forceloads", + "gui.xaero_pac_player_config_tooltip_playerConfig.claims.bonusChunkForceloads" : "default", ++ "gui.xaero_pac_player_config_playerConfig.claims.displayClaimAsPartyOwned" : "Display Your Party As Claim Owner", ++ "gui.xaero_pac_player_config_tooltip_playerConfig.claims.displayClaimAsPartyOwned" : "default", + "gui.xaero_pac_player_config_playerConfig.claims.protectClaimedChunks" : "Claimed Chunk Protection", + "gui.xaero_pac_player_config_tooltip_playerConfig.claims.protectClaimedChunks" : "default", + "gui.xaero_pac_player_config_playerConfig.claims.protection.fromParty" : "Protect From My Party", +diff --git a/docs/javadoc/index-all.html b/docs/javadoc/index-all.html +index 4045608e..a6a67236 100644 +--- a/docs/javadoc/index-all.html ++++ b/docs/javadoc/index-all.html +@@ -184,9 +184,17 @@ loadScripts(document, 'script'); +

+
The option value was reset to the default config's value
+
++
DISPLAY_CLAIM_OWNER_AS_PARTY - Static variable in class xaero.pac.common.server.player.config.api.PlayerConfigOptions
++
++
Whether to display a player's claims as belonging to their party.
++
+ +

E

+
++
ensureDimension(ResourceLocation) - Method in interface xaero.pac.client.claims.api.IClientClaimsManagerAPI
++
 
++
ensureDimension(ResourceLocation) - Method in interface xaero.pac.common.claims.api.IClaimsManagerAPI
++
 
+
EXPIRED - Enum constant in enum class xaero.pac.common.server.player.config.api.PlayerConfigType
+
+
Expired claims config
+@@ -804,10 +812,22 @@ loadScripts(document, 'script'); +
+
Gets the party/ally player dynamic info storage.
+
++
getPartyName() - Method in interface xaero.pac.client.claims.player.api.IClientPlayerClaimInfoAPI
++
 
+
getPartyName() - Method in interface xaero.pac.client.parties.party.api.IClientPartyStorageAPI
+
+
Gets the name of the local client player's party.
+
++
getPartyName() - Method in interface xaero.pac.common.claims.player.api.IPlayerClaimInfoAPI
++
++
Gets the name of the claim owner's party.
++
++
getPartyName(int) - Method in interface xaero.pac.client.claims.player.api.IClientPlayerClaimInfoAPI
++
 
++
getPartyName(int) - Method in interface xaero.pac.common.claims.player.api.IPlayerClaimInfoAPI
++
++
Gets the name of the sub-claim owner's party.
++
+
getPath() - Method in interface xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI
+
+
Gets the path of this option, which is just the ID from IPlayerConfigOptionSpecAPI.getId() but separated into elements.
+diff --git a/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO b/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO +index b62cc3ef..ff700cd0 100644 +--- a/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO ++++ b/docs/javadoc/legal/ADDITIONAL_LICENSE_INFO +@@ -1 +1,37 @@ +-Please see ..\java.base\ADDITIONAL_LICENSE_INFO ++ ADDITIONAL INFORMATION ABOUT LICENSING ++ ++Certain files distributed by Oracle America, Inc. and/or its affiliates are ++subject to the following clarification and special exception to the GPLv2, ++based on the GNU Project exception for its Classpath libraries, known as the ++GNU Classpath Exception. ++ ++Note that Oracle includes multiple, independent programs in this software ++package. Some of those programs are provided under licenses deemed ++incompatible with the GPLv2 by the Free Software Foundation and others. ++For example, the package includes programs licensed under the Apache ++License, Version 2.0 and may include FreeType. Such programs are licensed ++to you under their original licenses. ++ ++Oracle facilitates your further distribution of this package by adding the ++Classpath Exception to the necessary parts of its GPLv2 code, which permits ++you to use that code in combination with other independent modules not ++licensed under the GPLv2. However, note that this would not permit you to ++commingle code under an incompatible license with Oracle's GPLv2 licensed ++code by, for example, cutting and pasting such code into a file also ++containing Oracle's GPLv2 licensed code and then distributing the result. ++ ++Additionally, if you were to remove the Classpath Exception from any of the ++files to which it applies and distribute the result, you would likely be ++required to license some or all of the other code in that distribution under ++the GPLv2 as well, and since the GPLv2 is incompatible with the license terms ++of some items included in the distribution by Oracle, removing the Classpath ++Exception could therefore effectively compromise your ability to further ++distribute the package. ++ ++Failing to distribute notices associated with some files may also create ++unexpected legal consequences. ++ ++Proceed with caution and we recommend that you obtain the advice of a lawyer ++skilled in open source matters before removing the Classpath Exception or ++making modifications to this package which may subsequently be redistributed ++and/or involve the use of third party software. +diff --git a/docs/javadoc/legal/ASSEMBLY_EXCEPTION b/docs/javadoc/legal/ASSEMBLY_EXCEPTION +index 0d4cfb40..065b8d90 100644 +--- a/docs/javadoc/legal/ASSEMBLY_EXCEPTION ++++ b/docs/javadoc/legal/ASSEMBLY_EXCEPTION +@@ -1 +1,27 @@ +-Please see ..\java.base\ASSEMBLY_EXCEPTION ++ ++OPENJDK ASSEMBLY EXCEPTION ++ ++The OpenJDK source code made available by Oracle America, Inc. (Oracle) at ++openjdk.java.net ("OpenJDK Code") is distributed under the terms of the GNU ++General Public License version 2 ++only ("GPL2"), with the following clarification and special exception. ++ ++ Linking this OpenJDK Code statically or dynamically with other code ++ is making a combined work based on this library. Thus, the terms ++ and conditions of GPL2 cover the whole combination. ++ ++ As a special exception, Oracle gives you permission to link this ++ OpenJDK Code with certain code licensed by Oracle as indicated at ++ http://openjdk.java.net/legal/exception-modules-2007-05-08.html ++ ("Designated Exception Modules") to produce an executable, ++ regardless of the license terms of the Designated Exception Modules, ++ and to copy and distribute the resulting executable under GPL2, ++ provided that the Designated Exception Modules continue to be ++ governed by the licenses under which they were offered by Oracle. ++ ++As such, it allows licensees and sublicensees of Oracle's GPL2 OpenJDK Code ++to build an executable that includes those portions of necessary code that ++Oracle could not provide under GPL2 (or that Oracle has provided under GPL2 ++with the Classpath exception). If you modify or add to the OpenJDK code, ++that new GPL2 code may still be combined with Designated Exception Modules ++if the new code is made subject to this exception by its copyright holder. +diff --git a/docs/javadoc/legal/LICENSE b/docs/javadoc/legal/LICENSE +index 4ad9fe40..8b400c7a 100644 +--- a/docs/javadoc/legal/LICENSE ++++ b/docs/javadoc/legal/LICENSE +@@ -1 +1,347 @@ +-Please see ..\java.base\LICENSE ++The GNU General Public License (GPL) ++ ++Version 2, June 1991 ++ ++Copyright (C) 1989, 1991 Free Software Foundation, Inc. ++51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA ++ ++Everyone is permitted to copy and distribute verbatim copies of this license ++document, but changing it is not allowed. ++ ++Preamble ++ ++The licenses for most software are designed to take away your freedom to share ++and change it. By contrast, the GNU General Public License is intended to ++guarantee your freedom to share and change free software--to make sure the ++software is free for all its users. This General Public License applies to ++most of the Free Software Foundation's software and to any other program whose ++authors commit to using it. (Some other Free Software Foundation software is ++covered by the GNU Library General Public License instead.) You can apply it to ++your programs, too. ++ ++When we speak of free software, we are referring to freedom, not price. Our ++General Public Licenses are designed to make sure that you have the freedom to ++distribute copies of free software (and charge for this service if you wish), ++that you receive source code or can get it if you want it, that you can change ++the software or use pieces of it in new free programs; and that you know you ++can do these things. ++ ++To protect your rights, we need to make restrictions that forbid anyone to deny ++you these rights or to ask you to surrender the rights. These restrictions ++translate to certain responsibilities for you if you distribute copies of the ++software, or if you modify it. ++ ++For example, if you distribute copies of such a program, whether gratis or for ++a fee, you must give the recipients all the rights that you have. You must ++make sure that they, too, receive or can get the source code. And you must ++show them these terms so they know their rights. ++ ++We protect your rights with two steps: (1) copyright the software, and (2) ++offer you this license which gives you legal permission to copy, distribute ++and/or modify the software. ++ ++Also, for each author's protection and ours, we want to make certain that ++everyone understands that there is no warranty for this free software. If the ++software is modified by someone else and passed on, we want its recipients to ++know that what they have is not the original, so that any problems introduced ++by others will not reflect on the original authors' reputations. ++ ++Finally, any free program is threatened constantly by software patents. We ++wish to avoid the danger that redistributors of a free program will ++individually obtain patent licenses, in effect making the program proprietary. ++To prevent this, we have made it clear that any patent must be licensed for ++everyone's free use or not licensed at all. ++ ++The precise terms and conditions for copying, distribution and modification ++follow. ++ ++TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION ++ ++0. This License applies to any program or other work which contains a notice ++placed by the copyright holder saying it may be distributed under the terms of ++this General Public License. The "Program", below, refers to any such program ++or work, and a "work based on the Program" means either the Program or any ++derivative work under copyright law: that is to say, a work containing the ++Program or a portion of it, either verbatim or with modifications and/or ++translated into another language. (Hereinafter, translation is included ++without limitation in the term "modification".) Each licensee is addressed as ++"you". ++ ++Activities other than copying, distribution and modification are not covered by ++this License; they are outside its scope. The act of running the Program is ++not restricted, and the output from the Program is covered only if its contents ++constitute a work based on the Program (independent of having been made by ++running the Program). Whether that is true depends on what the Program does. ++ ++1. You may copy and distribute verbatim copies of the Program's source code as ++you receive it, in any medium, provided that you conspicuously and ++appropriately publish on each copy an appropriate copyright notice and ++disclaimer of warranty; keep intact all the notices that refer to this License ++and to the absence of any warranty; and give any other recipients of the ++Program a copy of this License along with the Program. ++ ++You may charge a fee for the physical act of transferring a copy, and you may ++at your option offer warranty protection in exchange for a fee. ++ ++2. You may modify your copy or copies of the Program or any portion of it, thus ++forming a work based on the Program, and copy and distribute such modifications ++or work under the terms of Section 1 above, provided that you also meet all of ++these conditions: ++ ++ a) You must cause the modified files to carry prominent notices stating ++ that you changed the files and the date of any change. ++ ++ b) You must cause any work that you distribute or publish, that in whole or ++ in part contains or is derived from the Program or any part thereof, to be ++ licensed as a whole at no charge to all third parties under the terms of ++ this License. ++ ++ c) If the modified program normally reads commands interactively when run, ++ you must cause it, when started running for such interactive use in the ++ most ordinary way, to print or display an announcement including an ++ appropriate copyright notice and a notice that there is no warranty (or ++ else, saying that you provide a warranty) and that users may redistribute ++ the program under these conditions, and telling the user how to view a copy ++ of this License. (Exception: if the Program itself is interactive but does ++ not normally print such an announcement, your work based on the Program is ++ not required to print an announcement.) ++ ++These requirements apply to the modified work as a whole. If identifiable ++sections of that work are not derived from the Program, and can be reasonably ++considered independent and separate works in themselves, then this License, and ++its terms, do not apply to those sections when you distribute them as separate ++works. But when you distribute the same sections as part of a whole which is a ++work based on the Program, the distribution of the whole must be on the terms ++of this License, whose permissions for other licensees extend to the entire ++whole, and thus to each and every part regardless of who wrote it. ++ ++Thus, it is not the intent of this section to claim rights or contest your ++rights to work written entirely by you; rather, the intent is to exercise the ++right to control the distribution of derivative or collective works based on ++the Program. ++ ++In addition, mere aggregation of another work not based on the Program with the ++Program (or with a work based on the Program) on a volume of a storage or ++distribution medium does not bring the other work under the scope of this ++License. ++ ++3. You may copy and distribute the Program (or a work based on it, under ++Section 2) in object code or executable form under the terms of Sections 1 and ++2 above provided that you also do one of the following: ++ ++ a) Accompany it with the complete corresponding machine-readable source ++ code, which must be distributed under the terms of Sections 1 and 2 above ++ on a medium customarily used for software interchange; or, ++ ++ b) Accompany it with a written offer, valid for at least three years, to ++ give any third party, for a charge no more than your cost of physically ++ performing source distribution, a complete machine-readable copy of the ++ corresponding source code, to be distributed under the terms of Sections 1 ++ and 2 above on a medium customarily used for software interchange; or, ++ ++ c) Accompany it with the information you received as to the offer to ++ distribute corresponding source code. (This alternative is allowed only ++ for noncommercial distribution and only if you received the program in ++ object code or executable form with such an offer, in accord with ++ Subsection b above.) ++ ++The source code for a work means the preferred form of the work for making ++modifications to it. For an executable work, complete source code means all ++the source code for all modules it contains, plus any associated interface ++definition files, plus the scripts used to control compilation and installation ++of the executable. However, as a special exception, the source code ++distributed need not include anything that is normally distributed (in either ++source or binary form) with the major components (compiler, kernel, and so on) ++of the operating system on which the executable runs, unless that component ++itself accompanies the executable. ++ ++If distribution of executable or object code is made by offering access to copy ++from a designated place, then offering equivalent access to copy the source ++code from the same place counts as distribution of the source code, even though ++third parties are not compelled to copy the source along with the object code. ++ ++4. You may not copy, modify, sublicense, or distribute the Program except as ++expressly provided under this License. Any attempt otherwise to copy, modify, ++sublicense or distribute the Program is void, and will automatically terminate ++your rights under this License. However, parties who have received copies, or ++rights, from you under this License will not have their licenses terminated so ++long as such parties remain in full compliance. ++ ++5. You are not required to accept this License, since you have not signed it. ++However, nothing else grants you permission to modify or distribute the Program ++or its derivative works. These actions are prohibited by law if you do not ++accept this License. Therefore, by modifying or distributing the Program (or ++any work based on the Program), you indicate your acceptance of this License to ++do so, and all its terms and conditions for copying, distributing or modifying ++the Program or works based on it. ++ ++6. Each time you redistribute the Program (or any work based on the Program), ++the recipient automatically receives a license from the original licensor to ++copy, distribute or modify the Program subject to these terms and conditions. ++You may not impose any further restrictions on the recipients' exercise of the ++rights granted herein. You are not responsible for enforcing compliance by ++third parties to this License. ++ ++7. If, as a consequence of a court judgment or allegation of patent ++infringement or for any other reason (not limited to patent issues), conditions ++are imposed on you (whether by court order, agreement or otherwise) that ++contradict the conditions of this License, they do not excuse you from the ++conditions of this License. If you cannot distribute so as to satisfy ++simultaneously your obligations under this License and any other pertinent ++obligations, then as a consequence you may not distribute the Program at all. ++For example, if a patent license would not permit royalty-free redistribution ++of the Program by all those who receive copies directly or indirectly through ++you, then the only way you could satisfy both it and this License would be to ++refrain entirely from distribution of the Program. ++ ++If any portion of this section is held invalid or unenforceable under any ++particular circumstance, the balance of the section is intended to apply and ++the section as a whole is intended to apply in other circumstances. ++ ++It is not the purpose of this section to induce you to infringe any patents or ++other property right claims or to contest validity of any such claims; this ++section has the sole purpose of protecting the integrity of the free software ++distribution system, which is implemented by public license practices. Many ++people have made generous contributions to the wide range of software ++distributed through that system in reliance on consistent application of that ++system; it is up to the author/donor to decide if he or she is willing to ++distribute software through any other system and a licensee cannot impose that ++choice. ++ ++This section is intended to make thoroughly clear what is believed to be a ++consequence of the rest of this License. ++ ++8. If the distribution and/or use of the Program is restricted in certain ++countries either by patents or by copyrighted interfaces, the original ++copyright holder who places the Program under this License may add an explicit ++geographical distribution limitation excluding those countries, so that ++distribution is permitted only in or among countries not thus excluded. In ++such case, this License incorporates the limitation as if written in the body ++of this License. ++ ++9. The Free Software Foundation may publish revised and/or new versions of the ++General Public License from time to time. Such new versions will be similar in ++spirit to the present version, but may differ in detail to address new problems ++or concerns. ++ ++Each version is given a distinguishing version number. If the Program ++specifies a version number of this License which applies to it and "any later ++version", you have the option of following the terms and conditions either of ++that version or of any later version published by the Free Software Foundation. ++If the Program does not specify a version number of this License, you may ++choose any version ever published by the Free Software Foundation. ++ ++10. If you wish to incorporate parts of the Program into other free programs ++whose distribution conditions are different, write to the author to ask for ++permission. For software which is copyrighted by the Free Software Foundation, ++write to the Free Software Foundation; we sometimes make exceptions for this. ++Our decision will be guided by the two goals of preserving the free status of ++all derivatives of our free software and of promoting the sharing and reuse of ++software generally. ++ ++NO WARRANTY ++ ++11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR ++THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE ++STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE ++PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, ++INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND ++FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND ++PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, ++YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. ++ ++12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ++ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE ++PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY ++GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR ++INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA ++BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A ++FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER ++OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. ++ ++END OF TERMS AND CONDITIONS ++ ++How to Apply These Terms to Your New Programs ++ ++If you develop a new program, and you want it to be of the greatest possible ++use to the public, the best way to achieve this is to make it free software ++which everyone can redistribute and change under these terms. ++ ++To do so, attach the following notices to the program. It is safest to attach ++them to the start of each source file to most effectively convey the exclusion ++of warranty; and each file should have at least the "copyright" line and a ++pointer to where the full notice is found. ++ ++ One line to give the program's name and a brief idea of what it does. ++ ++ Copyright (C) ++ ++ This program is free software; you can redistribute it and/or modify it ++ under the terms of the GNU General Public License as published by the Free ++ Software Foundation; either version 2 of the License, or (at your option) ++ any later version. ++ ++ This program is distributed in the hope that it will be useful, but WITHOUT ++ ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or ++ FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for ++ more details. ++ ++ You should have received a copy of the GNU General Public License along ++ with this program; if not, write to the Free Software Foundation, Inc., ++ 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. ++ ++Also add information on how to contact you by electronic and paper mail. ++ ++If the program is interactive, make it output a short notice like this when it ++starts in an interactive mode: ++ ++ Gnomovision version 69, Copyright (C) year name of author Gnomovision comes ++ with ABSOLUTELY NO WARRANTY; for details type 'show w'. This is free ++ software, and you are welcome to redistribute it under certain conditions; ++ type 'show c' for details. ++ ++The hypothetical commands 'show w' and 'show c' should show the appropriate ++parts of the General Public License. Of course, the commands you use may be ++called something other than 'show w' and 'show c'; they could even be ++mouse-clicks or menu items--whatever suits your program. ++ ++You should also get your employer (if you work as a programmer) or your school, ++if any, to sign a "copyright disclaimer" for the program, if necessary. Here ++is a sample; alter the names: ++ ++ Yoyodyne, Inc., hereby disclaims all copyright interest in the program ++ 'Gnomovision' (which makes passes at compilers) written by James Hacker. ++ ++ signature of Ty Coon, 1 April 1989 ++ ++ Ty Coon, President of Vice ++ ++This General Public License does not permit incorporating your program into ++proprietary programs. If your program is a subroutine library, you may ++consider it more useful to permit linking proprietary applications with the ++library. If this is what you want to do, use the GNU Library General Public ++License instead of this License. ++ ++ ++"CLASSPATH" EXCEPTION TO THE GPL ++ ++Certain source files distributed by Oracle America and/or its affiliates are ++subject to the following clarification and special exception to the GPL, but ++only where Oracle has expressly included in the particular source file's header ++the words "Oracle designates this particular file as subject to the "Classpath" ++exception as provided by Oracle in the LICENSE file that accompanied this code." ++ ++ Linking this library statically or dynamically with other modules is making ++ a combined work based on this library. Thus, the terms and conditions of ++ the GNU General Public License cover the whole combination. ++ ++ As a special exception, the copyright holders of this library give you ++ permission to link this library with independent modules to produce an ++ executable, regardless of the license terms of these independent modules, ++ and to copy and distribute the resulting executable under terms of your ++ choice, provided that you also meet, for each linked independent module, ++ the terms and conditions of the license of that module. An independent ++ module is a module which is not derived from or based on this library. If ++ you modify this library, you may extend this exception to your version of ++ the library, but you are not obligated to do so. If you do not wish to do ++ so, delete this exception statement from your version. +diff --git a/docs/javadoc/member-search-index.js b/docs/javadoc/member-search-index.js +index 2209d030..02800e54 100644 +--- a/docs/javadoc/member-search-index.js ++++ b/docs/javadoc/member-search-index.js +@@ -1 +1 @@ +-memberSearchIndex = [{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"addAllyParty(UUID)","u":"addAllyParty(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"addMember(UUID, PartyMemberRank, String)","u":"addMember(java.util.UUID,xaero.pac.common.parties.party.member.PartyMemberRank,java.lang.String)"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"ADMIN_MODE"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"ALL"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"ALREADY_CLAIMED"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"ALREADY_FORCELOADABLE"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"ALREADY_UNFORCELOADED"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"AreaClaimResult(Set, int, int, int, int)","u":"%3Cinit%3E(java.util.Set,int,int,int,int)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"BONUS_CHUNK_CLAIMS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"BONUS_CHUNK_FORCELOADS"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"checkExceptionLeveledOption(IPlayerConfigOptionSpecAPI, IPlayerConfigAPI, Entity)","u":"checkExceptionLeveledOption(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,xaero.pac.common.server.player.config.api.IPlayerConfigAPI,net.minecraft.world.entity.Entity)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"checkExceptionLeveledOption(IPlayerConfigOptionSpecAPI, IPlayerConfigAPI, UUID)","u":"checkExceptionLeveledOption(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,xaero.pac.common.server.player.config.api.IPlayerConfigAPI,java.util.UUID)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"checkProtectionLeveledOption(IPlayerConfigOptionSpecAPI, IPlayerConfigAPI, Entity)","u":"checkProtectionLeveledOption(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,xaero.pac.common.server.player.config.api.IPlayerConfigAPI,net.minecraft.world.entity.Entity)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"checkProtectionLeveledOption(IPlayerConfigOptionSpecAPI, IPlayerConfigAPI, UUID)","u":"checkProtectionLeveledOption(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,xaero.pac.common.server.player.config.api.IPlayerConfigAPI,java.util.UUID)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"CLAIM_LIMIT_REACHED"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"claim(ResourceLocation, UUID, int, int, int, boolean)","u":"claim(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,boolean)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult","l":"ClaimResult(C, ClaimResult.Type)","u":"%3Cinit%3E(C,xaero.pac.common.claims.result.api.ClaimResult.Type)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"CLAIMS_ARE_DISABLED"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"CLAIMS_COLOR"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"CLAIMS_NAME"},{"p":"xaero.pac.client.world.capability.api","c":"ClientWorldCapabilityTypes","l":"ClientWorldCapabilityTypes()","u":"%3Cinit%3E()"},{"p":"xaero.pac.client.world.capability.api","c":"ClientWorldMainCapabilityAPI","l":"ClientWorldMainCapabilityAPI()","u":"%3Cinit%3E()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"createPartyForOwner(Player)","u":"createPartyForOwner(net.minecraft.world.entity.player.Player)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"createSubConfig(String)","u":"createSubConfig(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"DEFAULT_PLAYER"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"DEFAULTED"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"EXPIRED"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"fail"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"FORCELOAD"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"FORCELOAD_LIMIT_REACHED"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"from(ServerPlayer)","u":"from(net.minecraft.server.level.ServerPlayer)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"get()"},{"p":"xaero.pac.client.claims.api","c":"IClientRegionClaimsAPI","l":"get(int, int)","u":"get(int,int)"},{"p":"xaero.pac.common.claims.api","c":"IRegionClaimsAPI","l":"get(int, int)","u":"get(int,int)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerRegionClaimsAPI","l":"get(int, int)","u":"get(int,int)"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"get(MinecraftServer)","u":"get(net.minecraft.server.MinecraftServer)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"get(ResourceLocation, BlockPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.core.BlockPos)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"get(ResourceLocation, BlockPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.core.BlockPos)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"get(ResourceLocation, BlockPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.core.BlockPos)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"get(ResourceLocation, ChunkPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.world.level.ChunkPos)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"get(ResourceLocation, ChunkPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.world.level.ChunkPos)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"get(ResourceLocation, ChunkPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.world.level.ChunkPos)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"get(ResourceLocation, int, int)","u":"get(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"get(ResourceLocation, int, int)","u":"get(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"get(ResourceLocation, int, int)","u":"get(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAllyInfoStorageAPI","l":"get(UUID)","u":"get(java.util.UUID)"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getAdaptiveTextLocalizer()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getAllOptionsStream()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getAllOptionsStream()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyMemberDynamicInfoSyncableStorageAPI","l":"getAllStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getAllStream()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getAllyCount()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getAllyCount()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getAllyCount()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAllyInfoAPI","l":"getAllyDefaultName()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAllyInfoAPI","l":"getAllyId()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getAllyInfoStorage()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getAllyLimit()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAllyInfoAPI","l":"getAllyName()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getAllyPartiesStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getAllyPartiesStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getAllyPartiesStream()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getBottom()"},{"p":"xaero.pac.common.capability.api","c":"ICapabilityHelperAPI","l":"getCapability(Object, C)","u":"getCapability(java.lang.Object,C)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getCapabilityHelper()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getChunkProtection()"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"getClaimConfig(IPlayerChunkClaimAPI)","u":"getClaimConfig(xaero.pac.common.claims.player.api.IPlayerChunkClaimAPI)"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimCount()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimCount()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimCount()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getClaimLimit()"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult","l":"getClaimResult()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getClaimResultTracker()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimsColor()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimsColor()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsColor()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimsColor(int)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimsColor(int)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsColor(int)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsColor(String)","u":"getClaimsColor(java.lang.String)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getClaimsManager()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimsName()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimsName()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsName()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimsName(int)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimsName(int)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsName(int)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsName(String)","u":"getClaimsName(java.lang.String)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimPosListAPI","l":"getClaimState()"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getClientPartyStorage()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getClientSideValidator()"},{"p":"xaero.pac.client.world.capability.api","c":"ClientWorldMainCapabilityAPI","l":"getClientWorldData()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getCommandInputParser()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getCommandInputParser()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getCommandOutputWriter()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getCommandOutputWriterCast()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getComment()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getComment()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getComment()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getComment()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getCommentTranslation()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getCommentTranslation()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getCommentTranslationArgs()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getCommentTranslationArgs()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getConfigTypeFilter()"},{"p":"xaero.pac.client.claims.api","c":"IClientDimensionClaimsManagerAPI","l":"getCount()"},{"p":"xaero.pac.common.claims.api","c":"IDimensionClaimsManagerAPI","l":"getCount()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimPosListAPI","l":"getCount()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerDimensionClaimsManagerAPI","l":"getCount()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getCurrentServerSubConfigId()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getCurrentServerSubConfigIndex()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getCurrentSubConfigId()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getCurrentSubConfigIndex()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getDefaultConfig()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getDefaultName()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getDefaultName()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getDefaultName()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getDefaultNodeString()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getDefaultPlayerConfig()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getDefaultRawValue(IPlayerConfigOptionSpecAPI)","u":"getDefaultRawValue(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getDefaultValue()"},{"p":"xaero.pac.client.claims.api","c":"IClientDimensionClaimsManagerAPI","l":"getDimension()"},{"p":"xaero.pac.common.claims.api","c":"IDimensionClaimsManagerAPI","l":"getDimension()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getDimension()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerDimensionClaimsManagerAPI","l":"getDimension()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getDimensionStream()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getDimensionStream()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getEffective(IPlayerConfigOptionSpecAPI)","u":"getEffective(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getEffectiveSubConfig(int)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getEffectiveSubConfig(String)","u":"getEffectiveSubConfig(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getEffectiveSubConfig(String)","u":"getEffectiveSubConfig(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getExpiredClaimConfig()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getExpiredClaimsConfig()"},{"p":"xaero.pac.common.server.player.localization.api","c":"IAdaptiveLocalizerAPI","l":"getFor(ServerPlayer, Component)","u":"getFor(net.minecraft.server.level.ServerPlayer,net.minecraft.network.chat.Component)"},{"p":"xaero.pac.common.server.player.localization.api","c":"IAdaptiveLocalizerAPI","l":"getFor(ServerPlayer, String, Object...)","u":"getFor(net.minecraft.server.level.ServerPlayer,java.lang.String,java.lang.Object...)"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getForceloadCount()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getForceloadCount()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getForceloadCount()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getForceloadLimit()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyMemberDynamicInfoSyncableStorageAPI","l":"getForPlayer(UUID)","u":"getForPlayer(java.util.UUID)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getFromEffectiveConfig(IPlayerConfigOptionSpecAPI)","u":"getFromEffectiveConfig(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getId()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getId()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getId()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getId()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getId()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getId()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPlayerPermissionSystemAPI","l":"getIntPermission(ServerPlayer, IPermissionNodeAPI)","u":"getIntPermission(net.minecraft.server.level.ServerPlayer,xaero.pac.common.server.player.permission.api.IPermissionNodeAPI)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getInviteCount()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getInviteCount()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getInviteCount()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getInvitedPlayersStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getInvitedPlayersStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getInvitedPlayersStream()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getInviteLimit()"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getKeyBindings()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getLeft()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getLoadedConfig(UUID)","u":"getLoadedConfig(java.util.UUID)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getMaxClaimDistance()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getMemberCount()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getMemberCount()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getMemberCount()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getMemberInfo(String)","u":"getMemberInfo(java.lang.String)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getMemberInfo(UUID)","u":"getMemberInfo(java.util.UUID)"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getMemberInfo(UUID)","u":"getMemberInfo(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getMemberInfo(UUID)","u":"getMemberInfo(java.util.UUID)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getMemberInfoStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getMemberInfoStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getMemberInfoStream()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getMemberLimit()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getMyPlayerConfig()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"getName()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getName()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getNodeString()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getNonStaffInfoStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getNonStaffInfoStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getNonStaffInfoStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getOnlineMemberStream()"},{"p":"xaero.pac.client.controls.api","c":"OPACKeyBindingsAPI","l":"getOpenModMenuKeyBinding()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getOption()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getOption()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getOptionForId(String)","u":"getOptionForId(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getOptionForId(String)","u":"getOptionForId(java.lang.String)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getOptionStorage(IPlayerConfigOptionSpecAPI)","u":"getOptionStorage(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getOwner()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getOwner()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getOwner()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getOwner()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getPartiesThatAlly(UUID)","u":"getPartiesThatAlly(java.util.UUID)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getParty()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getPartyById(UUID)","u":"getPartyById(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getPartyByMember(UUID)","u":"getPartyByMember(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemAPI","l":"getPartyByMember(UUID)","u":"getPartyByMember(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getPartyByOwner(UUID)","u":"getPartyByOwner(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemAPI","l":"getPartyByOwner(UUID)","u":"getPartyByOwner(java.util.UUID)"},{"p":"xaero.pac.common.parties.party.ally.api","c":"IPartyAllyAPI","l":"getPartyId()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getPartyManager()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getPartyMemberDynamicInfoSyncableStorage()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getPartyName()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getPath()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPlayerPermissionSystemAPI","l":"getPermission(ServerPlayer, IPermissionNodeAPI)","u":"getPermission(net.minecraft.server.level.ServerPlayer,xaero.pac.common.server.player.permission.api.IPermissionNodeAPI)"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPlayerPermissionSystemAPI","l":"getPermissionTyped(ServerPlayer, IPermissionNodeAPI)","u":"getPermissionTyped(net.minecraft.server.level.ServerPlayer,xaero.pac.common.server.player.permission.api.IPermissionNodeAPI)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerBaseClaimLimit(ServerPlayer)","u":"getPlayerBaseClaimLimit(net.minecraft.server.level.ServerPlayer)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerBaseClaimLimit(UUID)","u":"getPlayerBaseClaimLimit(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerBaseForceloadLimit(ServerPlayer)","u":"getPlayerBaseForceloadLimit(net.minecraft.server.level.ServerPlayer)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerBaseForceloadLimit(UUID)","u":"getPlayerBaseForceloadLimit(java.util.UUID)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getPlayerConfigClientStorageManager()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getPlayerConfigs()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerChunkClaimAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getPlayerId()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getPlayerInfo(UUID)","u":"getPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"getPlayerInfo(UUID)","u":"getPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerInfo(UUID)","u":"getPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getPlayerInfoStream()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerInfoStream()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getPlayerUsername()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getPlayerUsername()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getPlayerUsername()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getPotentialClaimStateReflection()"},{"p":"xaero.pac.common.parties.party.member.api","c":"IPartyMemberAPI","l":"getRank()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getRaw(IPlayerConfigOptionSpecAPI)","u":"getRaw(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.client.claims.api","c":"IClientDimensionClaimsManagerAPI","l":"getRegion(int, int)","u":"getRegion(int,int)"},{"p":"xaero.pac.common.claims.api","c":"IDimensionClaimsManagerAPI","l":"getRegion(int, int)","u":"getRegion(int,int)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerDimensionClaimsManagerAPI","l":"getRegion(int, int)","u":"getRegion(int,int)"},{"p":"xaero.pac.client.claims.api","c":"IClientDimensionClaimsManagerAPI","l":"getRegionStream()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerDimensionClaimsManagerAPI","l":"getRegionStream()"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult","l":"getResultType()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getResultTypesIterable()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getResultTypesStream()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getRight()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getServerClaimConfig()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getServerClaimsConfig()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getServerClaimsManager()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getServerSideValidator()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getShortenedId()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getSize()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getStaffInfoStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getStaffInfoStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getStaffInfoStream()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getStream()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimPosListAPI","l":"getStream()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerDimensionClaimsAPI","l":"getStream()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getStream()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getStringValidator()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubConfig(String)","u":"getSubConfig(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubConfig(String)","u":"getSubConfig(java.lang.String)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubConfigAPIStream()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubConfigAPIStream()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubConfigIds()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubConfigIds()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerChunkClaimAPI","l":"getSubConfigIndex()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubConfigLimit()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubConfigLimit()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubCount()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubCount()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubId()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubIndex()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getTooltipPrefix()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getTooltipPrefix()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getTooltipPrefix()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getTop()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getTracker()"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"getTracker()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getTracker()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getTranslation()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getTranslation()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getTranslation()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getTranslationArgs()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getTranslationArgs()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getType()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getType()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getType()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getType()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getType()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getType()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getUIAllyCount()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getUIInviteCount()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getUIMemberCount()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getUsedServerSubConfig()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getUsedSubConfig()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyPlayerInfoAPI","l":"getUsername()"},{"p":"xaero.pac.common.parties.party.member.api","c":"IPartyMemberAPI","l":"getUsername()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyPlayerInfoAPI","l":"getUUID()"},{"p":"xaero.pac.common.parties.party.member.api","c":"IPartyMemberAPI","l":"getUUID()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getValidator()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getValidator()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getValue()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getValue()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getWildernessConfig()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getWildernessConfig()"},{"p":"xaero.pac.client.claims.api","c":"IClientRegionClaimsAPI","l":"getX()"},{"p":"xaero.pac.common.claims.api","c":"IRegionClaimsAPI","l":"getX()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getX()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerRegionClaimsAPI","l":"getX()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getY()"},{"p":"xaero.pac.client.claims.api","c":"IClientRegionClaimsAPI","l":"getZ()"},{"p":"xaero.pac.common.claims.api","c":"IRegionClaimsAPI","l":"getZ()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getZ()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerRegionClaimsAPI","l":"getZ()"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"giveFullPass(UUID)","u":"giveFullPass(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"hasChunkAccess(IPlayerConfigAPI, Entity)","u":"hasChunkAccess(xaero.pac.common.server.player.config.api.IPlayerConfigAPI,net.minecraft.world.entity.Entity)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"hasChunkAccess(IPlayerConfigAPI, UUID)","u":"hasChunkAccess(xaero.pac.common.server.player.config.api.IPlayerConfigAPI,java.util.UUID)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"hasPlayerInfo(UUID)","u":"hasPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"hasPlayerInfo(UUID)","u":"hasPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"hasPlayerInfo(UUID)","u":"hasPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"ILLEGAL_OPTION"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"INVALID"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"invitePlayer(UUID, String)","u":"invitePlayer(java.util.UUID,java.lang.String)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"isAdminMode()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"isAlly(UUID)","u":"isAlly(java.util.UUID)"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"isAlly(UUID)","u":"isAlly(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"isAlly(UUID)","u":"isAlly(java.util.UUID)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"isBeingDeleted()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"isBeingDeleted()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"isClaimable(ResourceLocation)","u":"isClaimable(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"isClaimsAdminMode()"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"isClaimsNonallyMode()"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"isClaimsServerMode()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"isDefaulted()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"isDefaulted()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerChunkClaimAPI","l":"isForceloadable()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"isInvited(UUID)","u":"isInvited(java.util.UUID)"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"isInvited(UUID)","u":"isInvited(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"isInvited(UUID)","u":"isInvited(java.util.UUID)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"isLoading()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"isLoading()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"isMutable()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"isMutable()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"isOptionAllowed(IPlayerConfigOptionSpecAPI)","u":"isOptionAllowed(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.common.parties.party.member.api","c":"IPartyMemberAPI","l":"isOwner()"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemAPI","l":"isPermittedToPartyClaim(UUID)","u":"isPermittedToPartyClaim(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemAPI","l":"isPlayerAllying(UUID, UUID)","u":"isPlayerAllying(java.util.UUID,java.util.UUID)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerChunkClaimAPI","l":"isSameClaimType(IPlayerChunkClaimAPI)","u":"isSameClaimType(xaero.pac.common.claims.player.api.IPlayerChunkClaimAPI)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"isServerMode()"},{"p":"xaero.pac.client.world.capability.api","c":"ClientWorldCapabilityTypes","l":"MAIN_CAP"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"MAX_PLAYER_CLAIMS"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"MAX_PLAYER_FORCELOADS"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"message"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"NO_SERVER_PERMISSION"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"NOT_CLAIMED_BY_USER"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"NOT_CLAIMED_BY_USER_FORCELOAD"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"OFFLINE_FORCELOAD"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onBlockInteraction(Entity, InteractionHand, ItemStack, ServerLevel, BlockPos, Direction, boolean, boolean)","u":"onBlockInteraction(net.minecraft.world.entity.Entity,net.minecraft.world.InteractionHand,net.minecraft.world.item.ItemStack,net.minecraft.server.level.ServerLevel,net.minecraft.core.BlockPos,net.minecraft.core.Direction,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onBlockInteraction(Entity, InteractionHand, ItemStack, ServerLevel, BlockPos, Direction, boolean, boolean, boolean)","u":"onBlockInteraction(net.minecraft.world.entity.Entity,net.minecraft.world.InteractionHand,net.minecraft.world.item.ItemStack,net.minecraft.server.level.ServerLevel,net.minecraft.core.BlockPos,net.minecraft.core.Direction,boolean,boolean,boolean)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerListenerAPI","l":"onChunkChange(ResourceLocation, int, int, IPlayerChunkClaimAPI)","u":"onChunkChange(net.minecraft.resources.ResourceLocation,int,int,xaero.pac.common.claims.player.api.IPlayerChunkClaimAPI)"},{"p":"xaero.pac.client.claims.tracker.result.api","c":"IClaimsManagerClaimResultListenerAPI","l":"onClaimResult(AreaClaimResult)","u":"onClaimResult(xaero.pac.common.claims.result.api.AreaClaimResult)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerListenerAPI","l":"onDimensionChange(ResourceLocation)","u":"onDimensionChange(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onEntityInteraction(Entity, Entity, Entity, ItemStack, InteractionHand, boolean, boolean)","u":"onEntityInteraction(net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity,net.minecraft.world.item.ItemStack,net.minecraft.world.InteractionHand,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onEntityInteraction(Entity, Entity, Entity, ItemStack, InteractionHand, boolean, boolean, boolean)","u":"onEntityInteraction(net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity,net.minecraft.world.item.ItemStack,net.minecraft.world.InteractionHand,boolean,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onEntityPlaceBlock(Entity, ServerLevel, BlockPos)","u":"onEntityPlaceBlock(net.minecraft.world.entity.Entity,net.minecraft.server.level.ServerLevel,net.minecraft.core.BlockPos)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onItemPickup(Entity, ItemEntity)","u":"onItemPickup(net.minecraft.world.entity.Entity,net.minecraft.world.entity.item.ItemEntity)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onPosAffectedByAnotherPos(ServerLevel, ChunkPos, ServerLevel, ChunkPos, boolean, boolean, boolean)","u":"onPosAffectedByAnotherPos(net.minecraft.server.level.ServerLevel,net.minecraft.world.level.ChunkPos,net.minecraft.server.level.ServerLevel,net.minecraft.world.level.ChunkPos,boolean,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onProjectileHitSpawnedEntity(Entity, Entity)","u":"onProjectileHitSpawnedEntity(net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerListenerAPI","l":"onWholeRegionChange(ResourceLocation, int, int)","u":"onWholeRegionChange(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openDefaultPlayerConfigScreen(Screen, Screen)","u":"openDefaultPlayerConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openExpiredClaimsConfigScreen(Screen, Screen)","u":"openExpiredClaimsConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"openMainMenuScreen(Screen, Screen)","u":"openMainMenuScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openMyPlayerConfigScreen(Screen, Screen)","u":"openMyPlayerConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openOtherPlayerConfigScreen(Screen, Screen, String)","u":"openOtherPlayerConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen,java.lang.String)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"OpenPACClientAPI()","u":"%3Cinit%3E()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"OpenPACServerAPI(IServerDataAPI)","u":"%3Cinit%3E(xaero.pac.common.server.IServerDataAPI)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openServerClaimsConfigScreen(Screen, Screen)","u":"openServerClaimsConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openWildernessConfigScreen(Screen, Screen)","u":"openWildernessConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"OPTIONS"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"optionStream()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PARTY_NAME"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"partyExistsForOwner(UUID)","u":"partyExistsForOwner(java.util.UUID)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"PLAYER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PlayerConfigOptions()","u":"%3Cinit%3E()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_FROM_EXPLOSIONS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BUTTONS_FROM_PROJECTILES"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_CHORUS_FRUIT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_CROP_TRAMPLE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_DISPENSER_BARRIER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_EXPLOSIONS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_FIRE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FLUID_BARRIER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FRIENDLY_NATURAL_SPAWN"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FRIENDLY_SPAWNERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FROM_ALLY_PARTIES"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FROM_FIRE_SPREAD"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FROM_FROST_WALKING"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FROM_PARTY"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_HOSTILE_NATURAL_SPAWN"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_HOSTILE_SPAWNERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_PICKUP_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_PICKUP_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_PICKUP_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_TOSS_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_TOSS_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_TOSS_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_TOSS_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_USE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_MOB_GRIEFING_OVERRIDE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_MOB_LOOT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_NEIGHBOR_CHUNKS_ITEM_USE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_NETHER_PORTALS_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_NETHER_PORTALS_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_NETHER_PORTALS_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PISTON_BARRIER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLATES_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLATES_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLATES_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYER_DEATH_LOOT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYER_LIGHTNING"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYERS_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYERS_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYERS_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYERS_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PROJECTILE_HIT_FRIENDLY_SPAWN"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PROJECTILE_HIT_HOSTILE_SPAWN"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_RAIDS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_TARGETS_FROM_PROJECTILES"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_TRIPWIRE_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_TRIPWIRE_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_TRIPWIRE_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_XP_PICKUP"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"RECEIVE_LOCATIONS_FROM_PARTY"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"RECEIVE_LOCATIONS_FROM_PARTY_MUTUAL_ALLIES"},{"p":"xaero.pac.client.claims.tracker.result.api","c":"IClaimsManagerClaimResultTrackerAPI","l":"register(IClaimsManagerClaimResultListenerAPI)","u":"register(xaero.pac.client.claims.tracker.result.api.IClaimsManagerClaimResultListenerAPI)"},{"p":"xaero.pac.client.claims.tracker.result.api","c":"IClaimsManagerClaimResultTrackerRegisterAPI","l":"register(IClaimsManagerClaimResultListenerAPI)","u":"register(xaero.pac.client.claims.tracker.result.api.IClaimsManagerClaimResultListenerAPI)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerTrackerAPI","l":"register(IClaimsManagerListenerAPI)","u":"register(xaero.pac.common.claims.tracker.api.IClaimsManagerListenerAPI)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerTrackerRegisterAPI","l":"register(IClaimsManagerListenerAPI)","u":"register(xaero.pac.common.claims.tracker.api.IClaimsManagerListenerAPI)"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemRegisterAPI","l":"register(String, IPlayerPartySystemAPI)","u":"register(java.lang.String,xaero.pac.common.server.parties.system.api.IPlayerPartySystemAPI)"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPlayerPermissionSystemRegisterAPI","l":"register(String, IPlayerPermissionSystemAPI)","u":"register(java.lang.String,xaero.pac.common.server.player.permission.api.IPlayerPermissionSystemAPI)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"removeAllyParty(UUID)","u":"removeAllyParty(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"removeFullPass(UUID)","u":"removeFullPass(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"removeMember(UUID)","u":"removeMember(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"removeParty(IServerPartyAPI)","u":"removeParty(xaero.pac.common.server.parties.party.api.IServerPartyAPI)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"removePartyById(UUID)","u":"removePartyById(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"removePartyByOwner(UUID)","u":"removePartyByOwner(java.util.UUID)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"REPLACEMENT_IN_PROGRESS"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestAreaClaim(int, int, int, int, boolean)","u":"requestAreaClaim(int,int,int,int,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestAreaForceload(int, int, int, int, boolean, boolean)","u":"requestAreaForceload(int,int,int,int,boolean,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestAreaUnclaim(int, int, int, int, boolean)","u":"requestAreaUnclaim(int,int,int,int,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestClaim(int, int, boolean)","u":"requestClaim(int,int,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestForceload(int, int, boolean, boolean)","u":"requestForceload(int,int,boolean,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestUnclaim(int, int, boolean)","u":"requestUnclaim(int,int,boolean)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"SERVER"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"SERVER_CLAIMS"},{"p":"xaero.pac.client.world.api","c":"IClientWorldDataAPI","l":"serverHasClaimsEnabled()"},{"p":"xaero.pac.client.world.api","c":"IClientWorldDataAPI","l":"serverHasMod()"},{"p":"xaero.pac.client.world.api","c":"IClientWorldDataAPI","l":"serverHasPartiesEnabled()"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"ServerPlayerDataAPI()","u":"%3Cinit%3E()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"setRank(IPartyMemberAPI, PartyMemberRank)","u":"setRank(xaero.pac.common.parties.party.member.api.IPartyMemberAPI,xaero.pac.common.parties.party.member.PartyMemberRank)"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"setRank(IPartyMemberAPI, PartyMemberRank)","u":"setRank(xaero.pac.common.parties.party.member.api.IPartyMemberAPI,xaero.pac.common.parties.party.member.PartyMemberRank)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"setRank(IPartyMemberAPI, PartyMemberRank)","u":"setRank(xaero.pac.common.parties.party.member.api.IPartyMemberAPI,xaero.pac.common.parties.party.member.PartyMemberRank)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"SHARE_LOCATION_WITH_PARTY"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"SHARE_LOCATION_WITH_PARTY_MUTUAL_ALLIES"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"subConfigExists(int)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"subConfigExists(String)","u":"subConfigExists(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"subConfigExists(String)","u":"subConfigExists(java.lang.String)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"success"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"SUCCESS"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"SUCCESSFUL_CLAIM"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"SUCCESSFUL_FORCELOAD"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"SUCCESSFUL_UNCLAIM"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"SUCCESSFUL_UNFORCELOAD"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"TOO_FAR"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"TOO_MANY_CHUNKS"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToClaim(ResourceLocation, UUID, int, int, int, int, int, boolean)","u":"tryToClaim(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,int,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToClaimArea(ResourceLocation, UUID, int, int, int, int, int, int, int, boolean)","u":"tryToClaimArea(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,int,int,int,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToForceload(ResourceLocation, UUID, int, int, int, int, boolean, boolean)","u":"tryToForceload(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToForceloadArea(ResourceLocation, UUID, int, int, int, int, int, int, boolean, boolean)","u":"tryToForceloadArea(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,int,int,boolean,boolean)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"tryToReset(IPlayerConfigOptionSpecAPI)","u":"tryToReset(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"tryToSet(IPlayerConfigOptionSpecAPI, T)","u":"tryToSet(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,T)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToUnclaim(ResourceLocation, UUID, int, int, int, int, boolean)","u":"tryToUnclaim(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToUnclaimArea(ResourceLocation, UUID, int, int, int, int, int, int, boolean)","u":"tryToUnclaimArea(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,int,int,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"unclaim(ResourceLocation, int, int)","u":"unclaim(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"UNCLAIMABLE_DIMENSION"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"uninvitePlayer(UUID)","u":"uninvitePlayer(java.util.UUID)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"USED_SERVER_SUBCLAIM"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"USED_SUBCLAIM"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"UsedPermissionNodes()","u":"%3Cinit%3E()"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"values()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"values()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"values()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"WILDERNESS"}];updateSearchResults(); +\ No newline at end of file ++memberSearchIndex = [{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"addAllyParty(UUID)","u":"addAllyParty(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"addMember(UUID, PartyMemberRank, String)","u":"addMember(java.util.UUID,xaero.pac.common.parties.party.member.PartyMemberRank,java.lang.String)"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"ADMIN_MODE"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"ALL"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"ALREADY_CLAIMED"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"ALREADY_FORCELOADABLE"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"ALREADY_UNFORCELOADED"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"AreaClaimResult(Set, int, int, int, int)","u":"%3Cinit%3E(java.util.Set,int,int,int,int)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"BONUS_CHUNK_CLAIMS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"BONUS_CHUNK_FORCELOADS"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"checkExceptionLeveledOption(IPlayerConfigOptionSpecAPI, IPlayerConfigAPI, Entity)","u":"checkExceptionLeveledOption(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,xaero.pac.common.server.player.config.api.IPlayerConfigAPI,net.minecraft.world.entity.Entity)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"checkExceptionLeveledOption(IPlayerConfigOptionSpecAPI, IPlayerConfigAPI, UUID)","u":"checkExceptionLeveledOption(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,xaero.pac.common.server.player.config.api.IPlayerConfigAPI,java.util.UUID)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"checkProtectionLeveledOption(IPlayerConfigOptionSpecAPI, IPlayerConfigAPI, Entity)","u":"checkProtectionLeveledOption(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,xaero.pac.common.server.player.config.api.IPlayerConfigAPI,net.minecraft.world.entity.Entity)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"checkProtectionLeveledOption(IPlayerConfigOptionSpecAPI, IPlayerConfigAPI, UUID)","u":"checkProtectionLeveledOption(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,xaero.pac.common.server.player.config.api.IPlayerConfigAPI,java.util.UUID)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"CLAIM_LIMIT_REACHED"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"claim(ResourceLocation, UUID, int, int, int, boolean)","u":"claim(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,boolean)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult","l":"ClaimResult(C, ClaimResult.Type)","u":"%3Cinit%3E(C,xaero.pac.common.claims.result.api.ClaimResult.Type)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"CLAIMS_ARE_DISABLED"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"CLAIMS_COLOR"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"CLAIMS_NAME"},{"p":"xaero.pac.client.world.capability.api","c":"ClientWorldCapabilityTypes","l":"ClientWorldCapabilityTypes()","u":"%3Cinit%3E()"},{"p":"xaero.pac.client.world.capability.api","c":"ClientWorldMainCapabilityAPI","l":"ClientWorldMainCapabilityAPI()","u":"%3Cinit%3E()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"createPartyForOwner(Player)","u":"createPartyForOwner(net.minecraft.world.entity.player.Player)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"createSubConfig(String)","u":"createSubConfig(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"DEFAULT_PLAYER"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"DEFAULTED"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"DISPLAY_CLAIM_OWNER_AS_PARTY"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"ensureDimension(ResourceLocation)","u":"ensureDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"ensureDimension(ResourceLocation)","u":"ensureDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"EXPIRED"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"fail"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"FORCELOAD"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"FORCELOAD_LIMIT_REACHED"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"from(ServerPlayer)","u":"from(net.minecraft.server.level.ServerPlayer)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"get()"},{"p":"xaero.pac.client.claims.api","c":"IClientRegionClaimsAPI","l":"get(int, int)","u":"get(int,int)"},{"p":"xaero.pac.common.claims.api","c":"IRegionClaimsAPI","l":"get(int, int)","u":"get(int,int)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerRegionClaimsAPI","l":"get(int, int)","u":"get(int,int)"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"get(MinecraftServer)","u":"get(net.minecraft.server.MinecraftServer)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"get(ResourceLocation, BlockPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.core.BlockPos)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"get(ResourceLocation, BlockPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.core.BlockPos)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"get(ResourceLocation, BlockPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.core.BlockPos)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"get(ResourceLocation, ChunkPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.world.level.ChunkPos)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"get(ResourceLocation, ChunkPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.world.level.ChunkPos)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"get(ResourceLocation, ChunkPos)","u":"get(net.minecraft.resources.ResourceLocation,net.minecraft.world.level.ChunkPos)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"get(ResourceLocation, int, int)","u":"get(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"get(ResourceLocation, int, int)","u":"get(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"get(ResourceLocation, int, int)","u":"get(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAllyInfoStorageAPI","l":"get(UUID)","u":"get(java.util.UUID)"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getAdaptiveTextLocalizer()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getAllOptionsStream()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getAllOptionsStream()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyMemberDynamicInfoSyncableStorageAPI","l":"getAllStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getAllStream()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getAllyCount()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getAllyCount()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getAllyCount()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAllyInfoAPI","l":"getAllyDefaultName()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAllyInfoAPI","l":"getAllyId()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getAllyInfoStorage()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getAllyLimit()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAllyInfoAPI","l":"getAllyName()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getAllyPartiesStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getAllyPartiesStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getAllyPartiesStream()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getBottom()"},{"p":"xaero.pac.common.capability.api","c":"ICapabilityHelperAPI","l":"getCapability(Object, C)","u":"getCapability(java.lang.Object,C)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getCapabilityHelper()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getChunkProtection()"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"getClaimConfig(IPlayerChunkClaimAPI)","u":"getClaimConfig(xaero.pac.common.claims.player.api.IPlayerChunkClaimAPI)"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimCount()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimCount()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimCount()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getClaimLimit()"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult","l":"getClaimResult()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getClaimResultTracker()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimsColor()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimsColor()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsColor()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimsColor(int)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimsColor(int)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsColor(int)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsColor(String)","u":"getClaimsColor(java.lang.String)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getClaimsManager()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimsName()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimsName()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsName()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getClaimsName(int)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getClaimsName(int)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsName(int)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getClaimsName(String)","u":"getClaimsName(java.lang.String)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimPosListAPI","l":"getClaimState()"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getClientPartyStorage()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getClientSideValidator()"},{"p":"xaero.pac.client.world.capability.api","c":"ClientWorldMainCapabilityAPI","l":"getClientWorldData()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getCommandInputParser()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getCommandInputParser()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getCommandOutputWriter()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getCommandOutputWriterCast()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getComment()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getComment()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getComment()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getComment()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getCommentTranslation()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getCommentTranslation()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getCommentTranslationArgs()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getCommentTranslationArgs()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getConfigTypeFilter()"},{"p":"xaero.pac.client.claims.api","c":"IClientDimensionClaimsManagerAPI","l":"getCount()"},{"p":"xaero.pac.common.claims.api","c":"IDimensionClaimsManagerAPI","l":"getCount()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimPosListAPI","l":"getCount()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerDimensionClaimsManagerAPI","l":"getCount()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getCurrentServerSubConfigId()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getCurrentServerSubConfigIndex()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getCurrentSubConfigId()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getCurrentSubConfigIndex()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getDefaultConfig()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getDefaultName()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getDefaultName()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getDefaultName()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getDefaultNodeString()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getDefaultPlayerConfig()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getDefaultRawValue(IPlayerConfigOptionSpecAPI)","u":"getDefaultRawValue(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getDefaultValue()"},{"p":"xaero.pac.client.claims.api","c":"IClientDimensionClaimsManagerAPI","l":"getDimension()"},{"p":"xaero.pac.common.claims.api","c":"IDimensionClaimsManagerAPI","l":"getDimension()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getDimension()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerDimensionClaimsManagerAPI","l":"getDimension()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getDimension(ResourceLocation)","u":"getDimension(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getDimensionStream()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getDimensionStream()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getEffective(IPlayerConfigOptionSpecAPI)","u":"getEffective(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getEffectiveSubConfig(int)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getEffectiveSubConfig(String)","u":"getEffectiveSubConfig(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getEffectiveSubConfig(String)","u":"getEffectiveSubConfig(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getExpiredClaimConfig()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getExpiredClaimsConfig()"},{"p":"xaero.pac.common.server.player.localization.api","c":"IAdaptiveLocalizerAPI","l":"getFor(ServerPlayer, Component)","u":"getFor(net.minecraft.server.level.ServerPlayer,net.minecraft.network.chat.Component)"},{"p":"xaero.pac.common.server.player.localization.api","c":"IAdaptiveLocalizerAPI","l":"getFor(ServerPlayer, String, Object...)","u":"getFor(net.minecraft.server.level.ServerPlayer,java.lang.String,java.lang.Object...)"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getForceloadCount()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getForceloadCount()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getForceloadCount()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getForceloadLimit()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyMemberDynamicInfoSyncableStorageAPI","l":"getForPlayer(UUID)","u":"getForPlayer(java.util.UUID)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getFromEffectiveConfig(IPlayerConfigOptionSpecAPI)","u":"getFromEffectiveConfig(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getId()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getId()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getId()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getId()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getId()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getId()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPlayerPermissionSystemAPI","l":"getIntPermission(ServerPlayer, IPermissionNodeAPI)","u":"getIntPermission(net.minecraft.server.level.ServerPlayer,xaero.pac.common.server.player.permission.api.IPermissionNodeAPI)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getInviteCount()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getInviteCount()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getInviteCount()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getInvitedPlayersStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getInvitedPlayersStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getInvitedPlayersStream()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getInviteLimit()"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getKeyBindings()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getLeft()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getLoadedConfig(UUID)","u":"getLoadedConfig(java.util.UUID)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getMaxClaimDistance()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getMemberCount()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getMemberCount()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getMemberCount()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getMemberInfo(String)","u":"getMemberInfo(java.lang.String)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getMemberInfo(UUID)","u":"getMemberInfo(java.util.UUID)"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getMemberInfo(UUID)","u":"getMemberInfo(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getMemberInfo(UUID)","u":"getMemberInfo(java.util.UUID)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getMemberInfoStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getMemberInfoStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getMemberInfoStream()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getMemberLimit()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getMyPlayerConfig()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"getName()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getName()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getNodeString()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getNonStaffInfoStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getNonStaffInfoStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getNonStaffInfoStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getOnlineMemberStream()"},{"p":"xaero.pac.client.controls.api","c":"OPACKeyBindingsAPI","l":"getOpenModMenuKeyBinding()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getOption()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getOption()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getOptionForId(String)","u":"getOptionForId(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getOptionForId(String)","u":"getOptionForId(java.lang.String)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getOptionStorage(IPlayerConfigOptionSpecAPI)","u":"getOptionStorage(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getOwner()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getOwner()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getOwner()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getOwner()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getPartiesThatAlly(UUID)","u":"getPartiesThatAlly(java.util.UUID)"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getParty()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getPartyById(UUID)","u":"getPartyById(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getPartyByMember(UUID)","u":"getPartyByMember(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemAPI","l":"getPartyByMember(UUID)","u":"getPartyByMember(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"getPartyByOwner(UUID)","u":"getPartyByOwner(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemAPI","l":"getPartyByOwner(UUID)","u":"getPartyByOwner(java.util.UUID)"},{"p":"xaero.pac.common.parties.party.ally.api","c":"IPartyAllyAPI","l":"getPartyId()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getPartyManager()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getPartyMemberDynamicInfoSyncableStorage()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getPartyName()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getPartyName()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getPartyName()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getPartyName(int)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getPartyName(int)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getPath()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPlayerPermissionSystemAPI","l":"getPermission(ServerPlayer, IPermissionNodeAPI)","u":"getPermission(net.minecraft.server.level.ServerPlayer,xaero.pac.common.server.player.permission.api.IPermissionNodeAPI)"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPlayerPermissionSystemAPI","l":"getPermissionTyped(ServerPlayer, IPermissionNodeAPI)","u":"getPermissionTyped(net.minecraft.server.level.ServerPlayer,xaero.pac.common.server.player.permission.api.IPermissionNodeAPI)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerBaseClaimLimit(ServerPlayer)","u":"getPlayerBaseClaimLimit(net.minecraft.server.level.ServerPlayer)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerBaseClaimLimit(UUID)","u":"getPlayerBaseClaimLimit(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerBaseForceloadLimit(ServerPlayer)","u":"getPlayerBaseForceloadLimit(net.minecraft.server.level.ServerPlayer)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerBaseForceloadLimit(UUID)","u":"getPlayerBaseForceloadLimit(java.util.UUID)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"getPlayerConfigClientStorageManager()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getPlayerConfigs()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerChunkClaimAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getPlayerId()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getPlayerId()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getPlayerInfo(UUID)","u":"getPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"getPlayerInfo(UUID)","u":"getPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerInfo(UUID)","u":"getPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getPlayerInfoStream()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getPlayerInfoStream()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getPlayerUsername()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimInfoAPI","l":"getPlayerUsername()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getPlayerUsername()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getPotentialClaimStateReflection()"},{"p":"xaero.pac.common.parties.party.member.api","c":"IPartyMemberAPI","l":"getRank()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getRaw(IPlayerConfigOptionSpecAPI)","u":"getRaw(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.client.claims.api","c":"IClientDimensionClaimsManagerAPI","l":"getRegion(int, int)","u":"getRegion(int,int)"},{"p":"xaero.pac.common.claims.api","c":"IDimensionClaimsManagerAPI","l":"getRegion(int, int)","u":"getRegion(int,int)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerDimensionClaimsManagerAPI","l":"getRegion(int, int)","u":"getRegion(int,int)"},{"p":"xaero.pac.client.claims.api","c":"IClientDimensionClaimsManagerAPI","l":"getRegionStream()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerDimensionClaimsManagerAPI","l":"getRegionStream()"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult","l":"getResultType()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getResultTypesIterable()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getResultTypesStream()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getRight()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getServerClaimConfig()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getServerClaimsConfig()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"getServerClaimsManager()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getServerSideValidator()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getShortenedId()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getSize()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"getStaffInfoStream()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"getStaffInfoStream()"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"getStaffInfoStream()"},{"p":"xaero.pac.client.claims.player.api","c":"IClientPlayerClaimInfoAPI","l":"getStream()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerClaimPosListAPI","l":"getStream()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerDimensionClaimsAPI","l":"getStream()"},{"p":"xaero.pac.common.server.claims.player.api","c":"IServerPlayerClaimInfoAPI","l":"getStream()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getStringValidator()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubConfig(String)","u":"getSubConfig(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubConfig(String)","u":"getSubConfig(java.lang.String)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubConfigAPIStream()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubConfigAPIStream()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubConfigIds()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubConfigIds()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerChunkClaimAPI","l":"getSubConfigIndex()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubConfigLimit()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubConfigLimit()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getSubCount()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubCount()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubId()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getSubIndex()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getTooltipPrefix()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getTooltipPrefix()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getTooltipPrefix()"},{"p":"xaero.pac.common.claims.result.api","c":"AreaClaimResult","l":"getTop()"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"getTracker()"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"getTracker()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"getTracker()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getTranslation()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getTranslation()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getTranslation()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getTranslationArgs()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getTranslationArgs()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"getType()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getType()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getType()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getType()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigOptionSpecAPI","l":"getType()"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPermissionNodeAPI","l":"getType()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getUIAllyCount()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getUIInviteCount()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"getUIMemberCount()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getUsedServerSubConfig()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"getUsedSubConfig()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyPlayerInfoAPI","l":"getUsername()"},{"p":"xaero.pac.common.parties.party.member.api","c":"IPartyMemberAPI","l":"getUsername()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyPlayerInfoAPI","l":"getUUID()"},{"p":"xaero.pac.common.parties.party.member.api","c":"IPartyMemberAPI","l":"getUUID()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getValidator()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getValidator()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"getValue()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"getValue()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"getWildernessConfig()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigManagerAPI","l":"getWildernessConfig()"},{"p":"xaero.pac.client.claims.api","c":"IClientRegionClaimsAPI","l":"getX()"},{"p":"xaero.pac.common.claims.api","c":"IRegionClaimsAPI","l":"getX()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getX()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerRegionClaimsAPI","l":"getX()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getY()"},{"p":"xaero.pac.client.claims.api","c":"IClientRegionClaimsAPI","l":"getZ()"},{"p":"xaero.pac.common.claims.api","c":"IRegionClaimsAPI","l":"getZ()"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyMemberDynamicInfoSyncableAPI","l":"getZ()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerRegionClaimsAPI","l":"getZ()"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"giveFullPass(UUID)","u":"giveFullPass(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"hasChunkAccess(IPlayerConfigAPI, Entity)","u":"hasChunkAccess(xaero.pac.common.server.player.config.api.IPlayerConfigAPI,net.minecraft.world.entity.Entity)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"hasChunkAccess(IPlayerConfigAPI, UUID)","u":"hasChunkAccess(xaero.pac.common.server.player.config.api.IPlayerConfigAPI,java.util.UUID)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"hasPlayerInfo(UUID)","u":"hasPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.claims.api","c":"IClaimsManagerAPI","l":"hasPlayerInfo(UUID)","u":"hasPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"hasPlayerInfo(UUID)","u":"hasPlayerInfo(java.util.UUID)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"ILLEGAL_OPTION"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"INVALID"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"invitePlayer(UUID, String)","u":"invitePlayer(java.util.UUID,java.lang.String)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"isAdminMode()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"isAlly(UUID)","u":"isAlly(java.util.UUID)"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"isAlly(UUID)","u":"isAlly(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"isAlly(UUID)","u":"isAlly(java.util.UUID)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"isBeingDeleted()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"isBeingDeleted()"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"isClaimable(ResourceLocation)","u":"isClaimable(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"isClaimsAdminMode()"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"isClaimsNonallyMode()"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"isClaimsServerMode()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"isDefaulted()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"isDefaulted()"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerChunkClaimAPI","l":"isForceloadable()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"isInvited(UUID)","u":"isInvited(java.util.UUID)"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"isInvited(UUID)","u":"isInvited(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"isInvited(UUID)","u":"isInvited(java.util.UUID)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"isLoading()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyStorageAPI","l":"isLoading()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigOptionClientStorageAPI","l":"isMutable()"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigStringableOptionClientStorageAPI","l":"isMutable()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"isOptionAllowed(IPlayerConfigOptionSpecAPI)","u":"isOptionAllowed(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.common.parties.party.member.api","c":"IPartyMemberAPI","l":"isOwner()"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemAPI","l":"isPermittedToPartyClaim(UUID)","u":"isPermittedToPartyClaim(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemAPI","l":"isPlayerAllying(UUID, UUID)","u":"isPlayerAllying(java.util.UUID,java.util.UUID)"},{"p":"xaero.pac.common.claims.player.api","c":"IPlayerChunkClaimAPI","l":"isSameClaimType(IPlayerChunkClaimAPI)","u":"isSameClaimType(xaero.pac.common.claims.player.api.IPlayerChunkClaimAPI)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"isServerMode()"},{"p":"xaero.pac.client.world.capability.api","c":"ClientWorldCapabilityTypes","l":"MAIN_CAP"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"MAX_PLAYER_CLAIMS"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"MAX_PLAYER_FORCELOADS"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"message"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"NO_SERVER_PERMISSION"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"NOT_CLAIMED_BY_USER"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"NOT_CLAIMED_BY_USER_FORCELOAD"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"OFFLINE_FORCELOAD"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onBlockInteraction(Entity, InteractionHand, ItemStack, ServerLevel, BlockPos, Direction, boolean, boolean)","u":"onBlockInteraction(net.minecraft.world.entity.Entity,net.minecraft.world.InteractionHand,net.minecraft.world.item.ItemStack,net.minecraft.server.level.ServerLevel,net.minecraft.core.BlockPos,net.minecraft.core.Direction,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onBlockInteraction(Entity, InteractionHand, ItemStack, ServerLevel, BlockPos, Direction, boolean, boolean, boolean)","u":"onBlockInteraction(net.minecraft.world.entity.Entity,net.minecraft.world.InteractionHand,net.minecraft.world.item.ItemStack,net.minecraft.server.level.ServerLevel,net.minecraft.core.BlockPos,net.minecraft.core.Direction,boolean,boolean,boolean)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerListenerAPI","l":"onChunkChange(ResourceLocation, int, int, IPlayerChunkClaimAPI)","u":"onChunkChange(net.minecraft.resources.ResourceLocation,int,int,xaero.pac.common.claims.player.api.IPlayerChunkClaimAPI)"},{"p":"xaero.pac.client.claims.tracker.result.api","c":"IClaimsManagerClaimResultListenerAPI","l":"onClaimResult(AreaClaimResult)","u":"onClaimResult(xaero.pac.common.claims.result.api.AreaClaimResult)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerListenerAPI","l":"onDimensionChange(ResourceLocation)","u":"onDimensionChange(net.minecraft.resources.ResourceLocation)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onEntityInteraction(Entity, Entity, Entity, ItemStack, InteractionHand, boolean, boolean)","u":"onEntityInteraction(net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity,net.minecraft.world.item.ItemStack,net.minecraft.world.InteractionHand,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onEntityInteraction(Entity, Entity, Entity, ItemStack, InteractionHand, boolean, boolean, boolean)","u":"onEntityInteraction(net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity,net.minecraft.world.item.ItemStack,net.minecraft.world.InteractionHand,boolean,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onEntityPlaceBlock(Entity, ServerLevel, BlockPos)","u":"onEntityPlaceBlock(net.minecraft.world.entity.Entity,net.minecraft.server.level.ServerLevel,net.minecraft.core.BlockPos)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onItemPickup(Entity, ItemEntity)","u":"onItemPickup(net.minecraft.world.entity.Entity,net.minecraft.world.entity.item.ItemEntity)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onPosAffectedByAnotherPos(ServerLevel, ChunkPos, ServerLevel, ChunkPos, boolean, boolean, boolean)","u":"onPosAffectedByAnotherPos(net.minecraft.server.level.ServerLevel,net.minecraft.world.level.ChunkPos,net.minecraft.server.level.ServerLevel,net.minecraft.world.level.ChunkPos,boolean,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"onProjectileHitSpawnedEntity(Entity, Entity)","u":"onProjectileHitSpawnedEntity(net.minecraft.world.entity.Entity,net.minecraft.world.entity.Entity)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerListenerAPI","l":"onWholeRegionChange(ResourceLocation, int, int)","u":"onWholeRegionChange(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openDefaultPlayerConfigScreen(Screen, Screen)","u":"openDefaultPlayerConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openExpiredClaimsConfigScreen(Screen, Screen)","u":"openExpiredClaimsConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"openMainMenuScreen(Screen, Screen)","u":"openMainMenuScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openMyPlayerConfigScreen(Screen, Screen)","u":"openMyPlayerConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openOtherPlayerConfigScreen(Screen, Screen, String)","u":"openOtherPlayerConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen,java.lang.String)"},{"p":"xaero.pac.client.api","c":"OpenPACClientAPI","l":"OpenPACClientAPI()","u":"%3Cinit%3E()"},{"p":"xaero.pac.common.server.api","c":"OpenPACServerAPI","l":"OpenPACServerAPI(IServerDataAPI)","u":"%3Cinit%3E(xaero.pac.common.server.IServerDataAPI)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openServerClaimsConfigScreen(Screen, Screen)","u":"openServerClaimsConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageManagerAPI","l":"openWildernessConfigScreen(Screen, Screen)","u":"openWildernessConfigScreen(net.minecraft.client.gui.screens.Screen,net.minecraft.client.gui.screens.Screen)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"OPTIONS"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"optionStream()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PARTY_NAME"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"partyExistsForOwner(UUID)","u":"partyExistsForOwner(java.util.UUID)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"PLAYER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PlayerConfigOptions()","u":"%3Cinit%3E()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_FROM_EXPLOSIONS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BLOCKS_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_BUTTONS_FROM_PROJECTILES"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_CHORUS_FRUIT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_CROP_TRAMPLE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_DISPENSER_BARRIER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_EXPLOSIONS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_FIRE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ENTITIES_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FLUID_BARRIER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FRIENDLY_NATURAL_SPAWN"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FRIENDLY_SPAWNERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FROM_ALLY_PARTIES"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FROM_FIRE_SPREAD"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FROM_FROST_WALKING"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_FROM_PARTY"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_HOSTILE_NATURAL_SPAWN"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_HOSTILE_SPAWNERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_PICKUP_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_PICKUP_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_PICKUP_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_TOSS_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_TOSS_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_TOSS_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_TOSS_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_ITEM_USE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_MOB_GRIEFING_OVERRIDE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_MOB_LOOT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_NEIGHBOR_CHUNKS_ITEM_USE"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_NETHER_PORTALS_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_NETHER_PORTALS_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_NETHER_PORTALS_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PISTON_BARRIER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLATES_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLATES_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLATES_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYER_DEATH_LOOT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYER_LIGHTNING"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYERS_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYERS_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYERS_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PLAYERS_REDIRECT"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PROJECTILE_HIT_FRIENDLY_SPAWN"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_PROJECTILE_HIT_HOSTILE_SPAWN"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_RAIDS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_TARGETS_FROM_PROJECTILES"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_TRIPWIRE_FROM_MOBS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_TRIPWIRE_FROM_OTHER"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_TRIPWIRE_FROM_PLAYERS"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"PROTECT_CLAIMED_CHUNKS_XP_PICKUP"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"RECEIVE_LOCATIONS_FROM_PARTY"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"RECEIVE_LOCATIONS_FROM_PARTY_MUTUAL_ALLIES"},{"p":"xaero.pac.client.claims.tracker.result.api","c":"IClaimsManagerClaimResultTrackerAPI","l":"register(IClaimsManagerClaimResultListenerAPI)","u":"register(xaero.pac.client.claims.tracker.result.api.IClaimsManagerClaimResultListenerAPI)"},{"p":"xaero.pac.client.claims.tracker.result.api","c":"IClaimsManagerClaimResultTrackerRegisterAPI","l":"register(IClaimsManagerClaimResultListenerAPI)","u":"register(xaero.pac.client.claims.tracker.result.api.IClaimsManagerClaimResultListenerAPI)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerTrackerAPI","l":"register(IClaimsManagerListenerAPI)","u":"register(xaero.pac.common.claims.tracker.api.IClaimsManagerListenerAPI)"},{"p":"xaero.pac.common.claims.tracker.api","c":"IClaimsManagerTrackerRegisterAPI","l":"register(IClaimsManagerListenerAPI)","u":"register(xaero.pac.common.claims.tracker.api.IClaimsManagerListenerAPI)"},{"p":"xaero.pac.common.server.parties.system.api","c":"IPlayerPartySystemRegisterAPI","l":"register(String, IPlayerPartySystemAPI)","u":"register(java.lang.String,xaero.pac.common.server.parties.system.api.IPlayerPartySystemAPI)"},{"p":"xaero.pac.common.server.player.permission.api","c":"IPlayerPermissionSystemRegisterAPI","l":"register(String, IPlayerPermissionSystemAPI)","u":"register(java.lang.String,xaero.pac.common.server.player.permission.api.IPlayerPermissionSystemAPI)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"removeAllyParty(UUID)","u":"removeAllyParty(java.util.UUID)"},{"p":"xaero.pac.common.server.claims.protection.api","c":"IChunkProtectionAPI","l":"removeFullPass(UUID)","u":"removeFullPass(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"removeMember(UUID)","u":"removeMember(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"removeParty(IServerPartyAPI)","u":"removeParty(xaero.pac.common.server.parties.party.api.IServerPartyAPI)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"removePartyById(UUID)","u":"removePartyById(java.util.UUID)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IPartyManagerAPI","l":"removePartyByOwner(UUID)","u":"removePartyByOwner(java.util.UUID)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"REPLACEMENT_IN_PROGRESS"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestAreaClaim(int, int, int, int, boolean)","u":"requestAreaClaim(int,int,int,int,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestAreaForceload(int, int, int, int, boolean, boolean)","u":"requestAreaForceload(int,int,int,int,boolean,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestAreaUnclaim(int, int, int, int, boolean)","u":"requestAreaUnclaim(int,int,int,int,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestClaim(int, int, boolean)","u":"requestClaim(int,int,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestForceload(int, int, boolean, boolean)","u":"requestForceload(int,int,boolean,boolean)"},{"p":"xaero.pac.client.claims.api","c":"IClientClaimsManagerAPI","l":"requestUnclaim(int, int, boolean)","u":"requestUnclaim(int,int,boolean)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"SERVER"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"SERVER_CLAIMS"},{"p":"xaero.pac.client.world.api","c":"IClientWorldDataAPI","l":"serverHasClaimsEnabled()"},{"p":"xaero.pac.client.world.api","c":"IClientWorldDataAPI","l":"serverHasMod()"},{"p":"xaero.pac.client.world.api","c":"IClientWorldDataAPI","l":"serverHasPartiesEnabled()"},{"p":"xaero.pac.common.server.player.data.api","c":"ServerPlayerDataAPI","l":"ServerPlayerDataAPI()","u":"%3Cinit%3E()"},{"p":"xaero.pac.client.parties.party.api","c":"IClientPartyAPI","l":"setRank(IPartyMemberAPI, PartyMemberRank)","u":"setRank(xaero.pac.common.parties.party.member.api.IPartyMemberAPI,xaero.pac.common.parties.party.member.PartyMemberRank)"},{"p":"xaero.pac.common.parties.party.api","c":"IPartyAPI","l":"setRank(IPartyMemberAPI, PartyMemberRank)","u":"setRank(xaero.pac.common.parties.party.member.api.IPartyMemberAPI,xaero.pac.common.parties.party.member.PartyMemberRank)"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"setRank(IPartyMemberAPI, PartyMemberRank)","u":"setRank(xaero.pac.common.parties.party.member.api.IPartyMemberAPI,xaero.pac.common.parties.party.member.PartyMemberRank)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"SHARE_LOCATION_WITH_PARTY"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"SHARE_LOCATION_WITH_PARTY_MUTUAL_ALLIES"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"subConfigExists(int)"},{"p":"xaero.pac.client.player.config.api","c":"IPlayerConfigClientStorageAPI","l":"subConfigExists(String)","u":"subConfigExists(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"subConfigExists(String)","u":"subConfigExists(java.lang.String)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"success"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"SUCCESS"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"SUCCESSFUL_CLAIM"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"SUCCESSFUL_FORCELOAD"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"SUCCESSFUL_UNCLAIM"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"SUCCESSFUL_UNFORCELOAD"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"TOO_FAR"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"TOO_MANY_CHUNKS"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToClaim(ResourceLocation, UUID, int, int, int, int, int, boolean)","u":"tryToClaim(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,int,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToClaimArea(ResourceLocation, UUID, int, int, int, int, int, int, int, boolean)","u":"tryToClaimArea(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,int,int,int,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToForceload(ResourceLocation, UUID, int, int, int, int, boolean, boolean)","u":"tryToForceload(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,boolean,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToForceloadArea(ResourceLocation, UUID, int, int, int, int, int, int, boolean, boolean)","u":"tryToForceloadArea(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,int,int,boolean,boolean)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"tryToReset(IPlayerConfigOptionSpecAPI)","u":"tryToReset(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI","l":"tryToSet(IPlayerConfigOptionSpecAPI, T)","u":"tryToSet(xaero.pac.common.server.player.config.api.IPlayerConfigOptionSpecAPI,T)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToUnclaim(ResourceLocation, UUID, int, int, int, int, boolean)","u":"tryToUnclaim(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"tryToUnclaimArea(ResourceLocation, UUID, int, int, int, int, int, int, boolean)","u":"tryToUnclaimArea(net.minecraft.resources.ResourceLocation,java.util.UUID,int,int,int,int,int,int,boolean)"},{"p":"xaero.pac.common.server.claims.api","c":"IServerClaimsManagerAPI","l":"unclaim(ResourceLocation, int, int)","u":"unclaim(net.minecraft.resources.ResourceLocation,int,int)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"UNCLAIMABLE_DIMENSION"},{"p":"xaero.pac.common.server.parties.party.api","c":"IServerPartyAPI","l":"uninvitePlayer(UUID)","u":"uninvitePlayer(java.util.UUID)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"USED_SERVER_SUBCLAIM"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigOptions","l":"USED_SUBCLAIM"},{"p":"xaero.pac.common.server.player.permission.api","c":"UsedPermissionNodes","l":"UsedPermissionNodes()","u":"%3Cinit%3E()"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"valueOf(String)","u":"valueOf(java.lang.String)"},{"p":"xaero.pac.common.claims.result.api","c":"ClaimResult.Type","l":"values()"},{"p":"xaero.pac.common.server.player.config.api","c":"IPlayerConfigAPI.SetResult","l":"values()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"values()"},{"p":"xaero.pac.common.server.player.config.api","c":"PlayerConfigType","l":"WILDERNESS"}];updateSearchResults(); +\ No newline at end of file +diff --git a/docs/javadoc/xaero/pac/client/claims/api/IClientClaimsManagerAPI.html b/docs/javadoc/xaero/pac/client/claims/api/IClientClaimsManagerAPI.html +index 34b1913a..5546c42d 100644 +--- a/docs/javadoc/xaero/pac/client/claims/api/IClientClaimsManagerAPI.html ++++ b/docs/javadoc/xaero/pac/client/claims/api/IClientClaimsManagerAPI.html +@@ -94,164 +94,167 @@ extends Modifier and Type +
Method
+
Description
+-
+-
get(net.minecraft.resources.ResourceLocation dimension, ++ ++
ensureDimension(net.minecraft.resources.ResourceLocation dimension)
++
 
++ ++
get(net.minecraft.resources.ResourceLocation dimension, + int x, + int z)
+-
+-
Gets the claim state for a specified chunk.
+-
+- +-
get(net.minecraft.resources.ResourceLocation dimension, +- net.minecraft.core.BlockPos blockPos)
+
+
Gets the claim state for a specified chunk.
+
+ +-
get(net.minecraft.resources.ResourceLocation dimension, +- net.minecraft.world.level.ChunkPos chunkPos)
++
get(net.minecraft.resources.ResourceLocation dimension, ++ net.minecraft.core.BlockPos blockPos)
+
+
Gets the claim state for a specified chunk.
+
+-
int
+- ++ ++
get(net.minecraft.resources.ResourceLocation dimension, ++ net.minecraft.world.level.ChunkPos chunkPos)
+
+-
Gets the local client player's chunk claim limit.
++
Gets the claim state for a specified chunk.
+
+- +- ++
int
++ +
+-
Gets the claim action result tracker that lets you register claim action result listeners.
++
Gets the local client player's chunk claim limit.
+
+- +- ++ ++ +
+-
Gets the string ID of the sub-config currently used for new server claims.
++
Gets the claim action result tracker that lets you register claim action result listeners.
+
+-
int
+- ++ ++ +
+-
Gets the index of the sub-config currently used for new server claims.
++
Gets the string ID of the sub-config currently used for new server claims.
+
+- +- ++
int
++ +
+-
Gets the string ID of the sub-config currently used for new claims.
++
Gets the index of the sub-config currently used for new server claims.
+
+-
int
+- ++ ++ +
+-
Gets the index of the sub-config currently used for new claims.
++
Gets the string ID of the sub-config currently used for new claims.
+
+- +-
getDimension(net.minecraft.resources.ResourceLocation dimension)
++
int
++ +
+-
Gets the read-only claims manager for a specified dimension ID.
++
Gets the index of the sub-config currently used for new claims.
+
+- +- ++ ++
getDimension(net.minecraft.resources.ResourceLocation dimension)
+
+-
Gets a stream of all read-only dimension claims managers.
++
Gets the read-only claims manager for a specified dimension ID.
+
+-
int
+- ++ ++ +
+-
Gets the local client player's chunk claim forceload limit.
++
Gets a stream of all read-only dimension claims managers.
+
+
int
+- ++ +
+-
Gets the maximum distance for claiming/forceloading a chunk allowed by the server.
++
Gets the local client player's chunk claim forceload limit.
+
+- +-
getPlayerInfo(UUID playerId)
++
int
++ +
+-
Gets or creates the claim info instance for a player UUID.
++
Gets the maximum distance for claiming/forceloading a chunk allowed by the server.
+
+- +- ++ ++
getPlayerInfo(UUID playerId)
+
+-
Gets a stream of all player claim info.
++
Gets or creates the claim info instance for a player UUID.
+
+- +- ++ ++ +
+-
Gets a claim state of the same type (see IPlayerChunkClaimAPI.isSameClaimType(IPlayerChunkClaimAPI)) as +- would be placed in the world when the player requests a new claim.
++
Gets a stream of all player claim info.
+
+- +- ++ ++ +
+-
Gets the claim change tracker that lets you register claim change listeners.
++
Gets a claim state of the same type (see IPlayerChunkClaimAPI.isSameClaimType(IPlayerChunkClaimAPI)) as ++ would be placed in the world when the player requests a new claim.
+
+-
boolean
+-
hasPlayerInfo(UUID playerId)
++ ++ +
+-
Checks whether a player has claim info.
++
Gets the claim change tracker that lets you register claim change listeners.
+
+
boolean
+- ++
hasPlayerInfo(UUID playerId)
+
+-
Checks whether the local client player is in admin mode.
++
Checks whether a player has claim info.
+
+
boolean
+- ++ +
+-
Checks whether the initial server chunk claim sync is in progress.
++
Checks whether the local client player is in admin mode.
+
+
boolean
+- ++ +
++
Checks whether the initial server chunk claim sync is in progress.
++
++
boolean
++ ++
+
Checks whether the local client player is in server claim mode.
+
+-
void
+-
requestAreaClaim(int left, ++
void
++
requestAreaClaim(int left, + int top, + int right, + int bottom, + boolean byServer)
+-
++
+
Requests new chunks claims over a specified area by the local client player or by the server.
+
+-
void
+-
requestAreaForceload(int left, ++
void
++
requestAreaForceload(int left, + int top, + int right, + int bottom, + boolean enable, + boolean byServer)
+-
++
+
Requests chunk (un)forceloads over a specified area by the local client player or by the server.
+
+-
void
+-
requestAreaUnclaim(int left, ++
void
++
requestAreaUnclaim(int left, + int top, + int right, + int bottom, + boolean byServer)
+-
++
+
Requests chunk unclaims over a specified area by the local client player or by the server.
+
+-
void
+-
requestClaim(int x, ++
void
++
requestClaim(int x, + int z, + boolean byServer)
+-
++
+
Requests a new chunk claim by the local client player or by the server.
+
+-
void
+-
requestForceload(int x, ++
void
++
requestForceload(int x, + int z, + boolean enable, + boolean byServer)
+-
++
+
Requests a chunk (un)forceload by the local client player or by the server.
+
+-
void
+-
requestUnclaim(int x, ++
void
++
requestUnclaim(int x, + int z, + boolean byServer)
+-
++
+
Requests a chunk unclaim by the local client player or by the server.
+
+
+@@ -380,6 +383,18 @@ extends ++

ensureDimension

++
@Nonnull ++IClientDimensionClaimsManagerAPI ensureDimension(@Nonnull ++ net.minecraft.resources.ResourceLocation dimension)
++
++
Specified by:
++
ensureDimension in interface IClaimsManagerAPI
++
++ ++ ++
  • +
    +

    getDimension

    +
    @Nullable +diff --git a/docs/javadoc/xaero/pac/client/claims/player/api/IClientPlayerClaimInfoAPI.html b/docs/javadoc/xaero/pac/client/claims/player/api/IClientPlayerClaimInfoAPI.html +index 1b36ee60..47fd9e98 100644 +--- a/docs/javadoc/xaero/pac/client/claims/player/api/IClientPlayerClaimInfoAPI.html ++++ b/docs/javadoc/xaero/pac/client/claims/player/api/IClientPlayerClaimInfoAPI.html +@@ -131,6 +131,16 @@ extends +
    Gets the number of forceloadable claims owned by the player.
    +
    ++ ++ ++
    ++
    Gets the name of the claim owner's party.
    ++
    ++ ++
    getPartyName(int subConfigIndex)
    ++
    ++
    Gets the name of the sub-claim owner's party.
    ++
    + + +
    +@@ -222,6 +232,23 @@ extends +
  • +
  • ++
    ++

    getPartyName

    ++
    String getPartyName()
    ++
    Description copied from interface: IPlayerClaimInfoAPI
    ++
    Gets the name of the claim owner's party. ++

    ++ Will be empty if the player is not in a party or has their claims ++ configured to not show their party name.

    ++
    ++
    Specified by:
    ++
    getPartyName in interface IPlayerClaimInfoAPI
    ++
    Returns:
    ++
    the name of the claim owner's party, possibly empty
    ++
    ++
    ++
  • ++
  • +
    +

    getClaimsName

    +
    String getClaimsName()
    +@@ -254,6 +281,25 @@ extends +
  • +
  • ++
    ++

    getPartyName

    ++
    @Nullable ++String getPartyName(int subConfigIndex)
    ++
    Description copied from interface: IPlayerClaimInfoAPI
    ++
    Gets the name of the sub-claim owner's party. ++

    ++ Returns null if no such sub-claim exists or the claim owner's party, if configured.

    ++
    ++
    Specified by:
    ++
    getPartyName in interface IPlayerClaimInfoAPI
    ++
    Parameters:
    ++
    subConfigIndex - the index of the sub-config used by the sub-claim
    ++
    Returns:
    ++
    the name of the sub-claim owner's party, possibly empty
    ++
    ++
    ++
  • ++
  • +
    +

    getClaimsName

    +
    @Nullable +diff --git a/docs/javadoc/xaero/pac/common/claims/api/IClaimsManagerAPI.html b/docs/javadoc/xaero/pac/common/claims/api/IClaimsManagerAPI.html +index b15d4af8..80c94bbb 100644 +--- a/docs/javadoc/xaero/pac/common/claims/api/IClaimsManagerAPI.html ++++ b/docs/javadoc/xaero/pac/common/claims/api/IClaimsManagerAPI.html +@@ -93,43 +93,46 @@ loadScripts(document, 'script'); +
    Modifier and Type
    +
    Method
    +
    Description
    +- +-
    get(net.minecraft.resources.ResourceLocation dimension, ++ ++
    ensureDimension(net.minecraft.resources.ResourceLocation dimension)
    ++
     
    ++ ++
    get(net.minecraft.resources.ResourceLocation dimension, + int x, + int z)
    +-
    +-
    Gets the claim state for a specified chunk.
    +-
    +- +-
    get(net.minecraft.resources.ResourceLocation dimension, +- net.minecraft.core.BlockPos blockPos)
    +
    +
    Gets the claim state for a specified chunk.
    +
    + +-
    get(net.minecraft.resources.ResourceLocation dimension, +- net.minecraft.world.level.ChunkPos chunkPos)
    ++
    get(net.minecraft.resources.ResourceLocation dimension, ++ net.minecraft.core.BlockPos blockPos)
    +
    +
    Gets the claim state for a specified chunk.
    +
    +- +-
    getDimension(net.minecraft.resources.ResourceLocation dimension)
    ++ ++
    get(net.minecraft.resources.ResourceLocation dimension, ++ net.minecraft.world.level.ChunkPos chunkPos)
    +
    +-
    Gets the read-only claims manager for a specified dimension ID.
    ++
    Gets the claim state for a specified chunk.
    +
    +- +-
    getPlayerInfo(UUID playerId)
    ++ ++
    getDimension(net.minecraft.resources.ResourceLocation dimension)
    +
    +-
    Gets or creates the claim info instance for a player UUID.
    ++
    Gets the read-only claims manager for a specified dimension ID.
    +
    +- +- ++ ++
    getPlayerInfo(UUID playerId)
    +
    +-
    Gets the claim change tracker that lets you register claim change listeners.
    ++
    Gets or creates the claim info instance for a player UUID.
    +
    +-
    boolean
    +-
    hasPlayerInfo(UUID playerId)
    ++ ++ +
    ++
    Gets the claim change tracker that lets you register claim change listeners.
    ++
    ++
    boolean
    ++
    hasPlayerInfo(UUID playerId)
    ++
    +
    Checks whether a player has claim info.
    +
    +
    +@@ -246,6 +249,14 @@ loadScripts(document, 'script'); +
    +
  • +
  • ++
    ++

    ensureDimension

    ++
    @Nonnull ++IDimensionClaimsManagerAPI ensureDimension(@Nonnull ++ net.minecraft.resources.ResourceLocation dimension)
    ++
    ++
  • ++
  • +
    +

    getTracker

    +
    @Nonnull +diff --git a/docs/javadoc/xaero/pac/common/claims/player/api/IPlayerClaimInfoAPI.html b/docs/javadoc/xaero/pac/common/claims/player/api/IPlayerClaimInfoAPI.html +index 4081e970..a14fb1b5 100644 +--- a/docs/javadoc/xaero/pac/common/claims/player/api/IPlayerClaimInfoAPI.html ++++ b/docs/javadoc/xaero/pac/common/claims/player/api/IPlayerClaimInfoAPI.html +@@ -130,6 +130,16 @@ loadScripts(document, 'script'); +
    +
    Gets the number of forceloadable claims owned by the player.
    +
    ++ ++ ++
    ++
    Gets the name of the claim owner's party.
    ++
    ++ ++
    getPartyName(int subConfigIndex)
    ++
    ++
    Gets the name of the sub-claim owner's party.
    ++
    + + +
    +@@ -204,6 +214,21 @@ loadScripts(document, 'script'); +
    +
  • +
  • ++
    ++

    getPartyName

    ++
    @Nullable ++String getPartyName()
    ++
    Gets the name of the claim owner's party. ++

    ++ Will be empty if the player is not in a party or has their claims ++ configured to not show their party name.

    ++
    ++
    Returns:
    ++
    the name of the claim owner's party, possibly empty
    ++
    ++
    ++
  • ++
  • +
    +

    getClaimsName

    +
    @Nullable +@@ -231,6 +256,22 @@ loadScripts(document, 'script'); +
    +
  • +
  • ++
    ++

    getPartyName

    ++
    @Nullable ++String getPartyName(int subConfigIndex)
    ++
    Gets the name of the sub-claim owner's party. ++

    ++ Returns null if no such sub-claim exists or the claim owner's party, if configured.

    ++
    ++
    Parameters:
    ++
    subConfigIndex - the index of the sub-config used by the sub-claim
    ++
    Returns:
    ++
    the name of the sub-claim owner's party, possibly empty
    ++
    ++
    ++
  • ++
  • +
    +

    getClaimsName

    +
    @Nullable +diff --git a/docs/javadoc/xaero/pac/common/server/claims/api/IServerClaimsManagerAPI.html b/docs/javadoc/xaero/pac/common/server/claims/api/IServerClaimsManagerAPI.html +index 5e7450b6..019bbc0a 100644 +--- a/docs/javadoc/xaero/pac/common/server/claims/api/IServerClaimsManagerAPI.html ++++ b/docs/javadoc/xaero/pac/common/server/claims/api/IServerClaimsManagerAPI.html +@@ -264,6 +264,9 @@ extends ++

    Methods inherited from interface xaero.pac.common.claims.api.IClaimsManagerAPI

    ++ensureDimension
    +
    +
  • + +diff --git a/docs/javadoc/xaero/pac/common/server/claims/player/api/IServerPlayerClaimInfoAPI.html b/docs/javadoc/xaero/pac/common/server/claims/player/api/IServerPlayerClaimInfoAPI.html +index 4f044a6b..e434f65e 100644 +--- a/docs/javadoc/xaero/pac/common/server/claims/player/api/IServerPlayerClaimInfoAPI.html ++++ b/docs/javadoc/xaero/pac/common/server/claims/player/api/IServerPlayerClaimInfoAPI.html +@@ -161,6 +161,9 @@ extends ++

    Methods inherited from interface xaero.pac.common.claims.player.api.IPlayerClaimInfoAPI

    ++getPartyName, getPartyName
    + + + +diff --git a/docs/javadoc/xaero/pac/common/server/player/config/api/PlayerConfigOptions.html b/docs/javadoc/xaero/pac/common/server/player/config/api/PlayerConfigOptions.html +index 8ea8a550..ecabf3ef 100644 +--- a/docs/javadoc/xaero/pac/common/server/player/config/api/PlayerConfigOptions.html ++++ b/docs/javadoc/xaero/pac/common/server/player/config/api/PlayerConfigOptions.html +@@ -111,341 +111,346 @@ loadScripts(document, 'script'); +
    The display name of the player's claimed chunks.
    +
    + +- ++ +
    +-
    Whether the player's forceloadable claims are forceloaded, at least while the player is online.
    ++
    Whether to display a player's claims as belonging to their party.
    +
    + +- ++ +
    +-
    Whether the player's forceloaded claims stay forceloaded when they go offline.
    ++
    Whether the player's forceloadable claims are forceloaded, at least while the player is online.
    +
    +- +- ++ ++ +
    +-
    An ID->specification map of all static player config options.
    ++
    Whether the player's forceloaded claims stay forceloaded when they go offline.
    +
    +- +- ++ ++ +
    +-
    The name of the player's party if they own one.
    ++
    An ID->specification map of all static player config options.
    +
    +- +- ++ ++ +
    +-
    Whether the player's claimed chunks are protected at all.
    ++
    The name of the player's party if they own one.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against explosions.
    ++
    Whether the player's claimed chunks are protected at all.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against mobs breaking/placing blocks.
    ++
    Whether the claimed chunk protection includes protection against explosions.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against non-living entities breaking/placing blocks.
    ++
    Whether the claimed chunk protection includes protection against mobs breaking/placing blocks.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against players breaking and interacting with blocks.
    ++
    Whether the claimed chunk protection includes protection against non-living entities breaking/placing blocks.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk block protection redirects the used config option to the owner of the entity.
    ++
    Whether the claimed chunk protection includes protection against players breaking and interacting with blocks.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection of buttons being pressed by projectiles.
    ++
    Whether the claimed chunk block protection redirects the used config option to the owner of the entity.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against chorus fruit teleportation into the claim.
    ++
    Whether the claimed chunk protection includes protection of buttons being pressed by projectiles.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against crop trample.
    ++
    Whether the claimed chunk protection includes protection against chorus fruit teleportation into the claim.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against directly dispensing into the claim.
    ++
    Whether the claimed chunk protection includes protection against crop trample.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes entity protection against explosions.
    ++
    Whether the claimed chunk protection includes protection against directly dispensing into the claim.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes entity protection against fire damage.
    ++
    Whether the claimed chunk protection includes entity protection against explosions.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes entity protection against mobs.
    ++
    Whether the claimed chunk protection includes entity protection against fire damage.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes entity protection against non-living entities.
    ++
    Whether the claimed chunk protection includes entity protection against mobs.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes entity protection against players.
    ++
    Whether the claimed chunk protection includes entity protection against non-living entities.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk entity protection redirects the used config option to the owner of the attacking entity.
    ++
    Whether the claimed chunk protection includes entity protection against players.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against fluids flowing into the claim.
    ++
    Whether the claimed chunk entity protection redirects the used config option to the owner of the attacking entity.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes natural spawn prevention for friendly mobs.
    ++
    Whether the claimed chunk protection includes protection against fluids flowing into the claim.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection disables spawners for friendly mobs.
    ++
    Whether the claimed chunk protection includes natural spawn prevention for friendly mobs.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against allies of the party that the player is in.
    ++
    Whether the claimed chunk protection disables spawners for friendly mobs.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against fire spread.
    ++
    Whether the claimed chunk protection includes protection against allies of the party that the player is in.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection from frost walking.
    ++
    Whether the claimed chunk protection includes protection against fire spread.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against the party that the player is in.
    ++
    Whether the claimed chunk protection includes protection from frost walking.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes natural spawn prevention for hostile mobs.
    ++
    Whether the claimed chunk protection includes protection against the party that the player is in.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection disables spawners for hostile mobs.
    ++
    Whether the claimed chunk protection includes natural spawn prevention for hostile mobs.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against items being picked up by mobs.
    ++
    Whether the claimed chunk protection disables spawners for hostile mobs.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against items being picked up by players.
    ++
    Whether the claimed chunk protection includes protection against items being picked up by mobs.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk item pickup protection redirects the used config option to the owner of the entity picking up the item.
    ++
    Whether the claimed chunk protection includes protection against items being picked up by players.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against items being dropped by mobs.
    ++
    Whether the claimed chunk item pickup protection redirects the used config option to the owner of the entity picking up the item.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against items being dropped by non-living entities.
    ++
    Whether the claimed chunk protection includes protection against items being dropped by mobs.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against items being dropped by players.
    ++
    Whether the claimed chunk protection includes protection against items being dropped by non-living entities.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk item drop protection redirects the used config option to the owner of the dropping entity.
    ++
    Whether the claimed chunk protection includes protection against items being dropped by players.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against item use.
    ++
    Whether the claimed chunk item drop protection redirects the used config option to the owner of the dropping entity.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection options for block/entity/items override the value of the vanilla "mob griefing" game rule.
    ++
    Whether the claimed chunk protection includes protection against item use.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection from mob loot being dropped unless killed by players with access.
    ++
    Whether the claimed chunk protection options for block/entity/items override the value of the vanilla "mob griefing" game rule.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against at-air (or sometimes other) item use in +- neighbor chunks of the claim.
    ++
    Whether the claimed chunk protection includes protection from mob loot being dropped unless killed by players with access.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against mobs using nether portals.
    ++
    Whether the claimed chunk protection includes protection against at-air (or sometimes other) item use in ++ neighbor chunks of the claim.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against non-living entities using nether portals.
    ++
    Whether the claimed chunk protection includes protection against mobs using nether portals.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against players using nether portals.
    ++
    Whether the claimed chunk protection includes protection against non-living entities using nether portals.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against pistons pushing into the claim.
    ++
    Whether the claimed chunk protection includes protection against players using nether portals.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection of pressure plates being pressed by mobs.
    ++
    Whether the claimed chunk protection includes protection against pistons pushing into the claim.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection of pressure plates being pressed by non-living entities.
    ++
    Whether the claimed chunk protection includes protection of pressure plates being pressed by mobs.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection of pressure plates being pressed by players.
    ++
    Whether the claimed chunk protection includes protection of pressure plates being pressed by non-living entities.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection for items dropped on player death.
    ++
    Whether the claimed chunk protection includes protection of pressure plates being pressed by players.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against player-caused lightnings.
    ++
    Whether the claimed chunk protection includes protection for items dropped on player death.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes player protection against mobs.
    ++
    Whether the claimed chunk protection includes protection against player-caused lightnings.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes player protection against non-living entities.
    ++
    Whether the claimed chunk protection includes player protection against mobs.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes player protection against players.
    ++
    Whether the claimed chunk protection includes player protection against non-living entities.
    +
    + +- ++ +
    +-
    Whether the claimed chunk player protection redirects the used config option to the owner of the attacking entity.
    ++
    Whether the claimed chunk protection includes player protection against players.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes prevention of non-hostile mobs being spawned by +- landing projectiles (e.g.
    ++
    Whether the claimed chunk player protection redirects the used config option to the owner of the attacking entity.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes prevention of hostile mobs being spawned by ++
    Whether the claimed chunk protection includes prevention of non-hostile mobs being spawned by + landing projectiles (e.g.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection against village raids.
    ++
    Whether the claimed chunk protection includes prevention of hostile mobs being spawned by ++ landing projectiles (e.g.
    +
    +- +- ++ ++ +
    +-
    Whether the claimed chunk protection includes protection of target blocks being pressed by projectiles.
    ++
    Whether the claimed chunk protection includes protection against village raids.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection of tripwires being pressed by mobs.
    ++
    Whether the claimed chunk protection includes protection of target blocks being pressed by projectiles.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection of tripwires being pressed by non-living entities.
    ++
    Whether the claimed chunk protection includes protection of tripwires being pressed by mobs.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection of tripwires being pressed by players.
    ++
    Whether the claimed chunk protection includes protection of tripwires being pressed by non-living entities.
    +
    + +- ++ +
    +-
    Whether the claimed chunk protection includes protection against experience orbs being picked up by players.
    ++
    Whether the claimed chunk protection includes protection of tripwires being pressed by players.
    +
    +- +- ++ ++ +
    +-
    Whether the player receives the in-game locations shared by their fellow party members.
    ++
    Whether the claimed chunk protection includes protection against experience orbs being picked up by players.
    +
    + +- ++ +
    +-
    Whether the player receives the in-game locations shared by their party's mutual allies.
    ++
    Whether the player receives the in-game locations shared by their fellow party members.
    +
    + +- ++ +
    +-
    Whether the player shares their in-game location with their party.
    ++
    Whether the player receives the in-game locations shared by their party's mutual allies.
    +
    + +- ++ +
    +-
    Whether the player shares their in-game location with their party's mutual allies.
    ++
    Whether the player shares their in-game location with their party.
    +
    +- +- ++ ++ +
    +-
    The current sub-config ID that the player uses for new server claims.
    ++
    Whether the player shares their in-game location with their party's mutual allies.
    +
    + +- ++ +
    ++
    The current sub-config ID that the player uses for new server claims.
    ++
    ++ ++ ++
    +
    The current sub-config ID that the player uses for their own new claims.
    +
    +
    +@@ -539,6 +544,13 @@ loadScripts(document, 'script'); + + +
  • ++
    ++

    DISPLAY_CLAIM_OWNER_AS_PARTY

    ++
    public static final IPlayerConfigOptionSpecAPI<Boolean> DISPLAY_CLAIM_OWNER_AS_PARTY
    ++
    Whether to display a player's claims as belonging to their party.
    ++
    ++
  • ++
  • +
    +

    PROTECT_CLAIMED_CHUNKS

    +
    public static final IPlayerConfigOptionSpecAPI<Boolean> PROTECT_CLAIMED_CHUNKS
    +diff --git a/gradle.properties b/gradle.properties +index a376e7c3..6af5067c 100644 +--- a/gradle.properties ++++ b/gradle.properties +@@ -44,6 +44,6 @@ sources=https://github.com/thexaero/open-parties-and-claims + issues=https://github.com/thexaero/open-parties-and-claims/issues + + # Gradle +-org.gradle.java.home=C:/Program Files/Java/jdk-17.0.9+9 ++#org.gradle.java.home=C:/Program Files/Java/jdk-17.0.9+9 + org.gradle.jvmargs=-Xmx3G + org.gradle.daemon=false +\ No newline at end of file diff --git a/archive/patches/sound_physics_underwater.diff b/archive/patches/sound_physics_underwater.diff new file mode 100644 index 0000000..e176639 --- /dev/null +++ b/archive/patches/sound_physics_underwater.diff @@ -0,0 +1,19 @@ +938c7f85e198c61a310ba45e8115015d16db41ea(origin/1.20.1) + +diff --git a/common/src/main/java/com/sonicether/soundphysics/SoundPhysics.java b/common/src/main/java/com/sonicether/soundphysics/SoundPhysics.java +index 790dca0..e17b698 100644 +--- a/common/src/main/java/com/sonicether/soundphysics/SoundPhysics.java ++++ b/common/src/main/java/com/sonicether/soundphysics/SoundPhysics.java +@@ -599,7 +599,11 @@ public class SoundPhysics { + } + + public static void setDefaultEnvironment(int sourceID, boolean auxOnly) { +- setEnvironment(sourceID, 0F, 0F, 0F, 0F, 1F, 1F, 1F, 1F, 1F, auxOnly ? 0F : 1F); ++ float directCutoff = 1F; ++ if (minecraft.player != null && minecraft.player.isUnderWater()) { ++ directCutoff *= 1F - SoundPhysicsMod.CONFIG.underwaterFilter.get(); ++ } ++ setEnvironment(sourceID, 0F, 0F, 0F, 0F, 1F, 1F, 1F, 1F, directCutoff, auxOnly ? 0F : 1F); + } + + public static void setEnvironment(int sourceID, float sendGain0, float sendGain1, float sendGain2, float sendGain3, float sendCutoff0, float sendCutoff1, float sendCutoff2, float sendCutoff3, float directCutoff, float directGain) { -- cgit v1.2.3-101-g0448