mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2025-07-15 20:04:43 +02:00
Compare commits
1 Commits
7.4.1
...
fix/v7/ref
Author | SHA1 | Date | |
---|---|---|---|
21a94104be |
2
.github/renovate.json
vendored
2
.github/renovate.json
vendored
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
|
||||||
"extends": [
|
"extends": [
|
||||||
"config:recommended",
|
"config:base",
|
||||||
":semanticCommitsDisabled"
|
":semanticCommitsDisabled"
|
||||||
],
|
],
|
||||||
"automerge": true,
|
"automerge": true,
|
||||||
|
@ -47,7 +47,6 @@ import com.plotsquared.core.plot.flag.implementations.TileDropFlag;
|
|||||||
import com.plotsquared.core.plot.flag.types.BooleanFlag;
|
import com.plotsquared.core.plot.flag.types.BooleanFlag;
|
||||||
import com.plotsquared.core.plot.world.PlotAreaManager;
|
import com.plotsquared.core.plot.world.PlotAreaManager;
|
||||||
import com.plotsquared.core.util.PlotFlagUtil;
|
import com.plotsquared.core.util.PlotFlagUtil;
|
||||||
import io.papermc.paper.event.entity.EntityMoveEvent;
|
|
||||||
import net.kyori.adventure.text.Component;
|
import net.kyori.adventure.text.Component;
|
||||||
import net.kyori.adventure.text.minimessage.tag.Tag;
|
import net.kyori.adventure.text.minimessage.tag.Tag;
|
||||||
import net.kyori.adventure.text.minimessage.tag.resolver.TagResolver;
|
import net.kyori.adventure.text.minimessage.tag.resolver.TagResolver;
|
||||||
@ -59,7 +58,6 @@ import org.bukkit.entity.EntityType;
|
|||||||
import org.bukkit.entity.Player;
|
import org.bukkit.entity.Player;
|
||||||
import org.bukkit.entity.Projectile;
|
import org.bukkit.entity.Projectile;
|
||||||
import org.bukkit.entity.Slime;
|
import org.bukkit.entity.Slime;
|
||||||
import org.bukkit.event.Cancellable;
|
|
||||||
import org.bukkit.event.EventHandler;
|
import org.bukkit.event.EventHandler;
|
||||||
import org.bukkit.event.EventPriority;
|
import org.bukkit.event.EventPriority;
|
||||||
import org.bukkit.event.Listener;
|
import org.bukkit.event.Listener;
|
||||||
@ -106,38 +104,8 @@ public class PaperListener implements Listener {
|
|||||||
if (!Settings.Paper_Components.ENTITY_PATHING) {
|
if (!Settings.Paper_Components.ENTITY_PATHING) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
handleEntityMovement(event, event.getEntity().getLocation(), event.getLoc());
|
Location toLoc = BukkitUtil.adapt(event.getLoc());
|
||||||
}
|
Location fromLoc = BukkitUtil.adapt(event.getEntity().getLocation());
|
||||||
|
|
||||||
@EventHandler
|
|
||||||
public void onEntityPathfind(SlimePathfindEvent event) {
|
|
||||||
if (!Settings.Paper_Components.ENTITY_PATHING) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
Slime slime = event.getEntity();
|
|
||||||
|
|
||||||
Block b = slime.getTargetBlockExact(4);
|
|
||||||
if (b == null) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
handleEntityMovement(event, event.getEntity().getLocation(), b.getLocation());
|
|
||||||
}
|
|
||||||
|
|
||||||
@EventHandler
|
|
||||||
public void onEntityMove(EntityMoveEvent event) {
|
|
||||||
if (!Settings.Paper_Components.ENTITY_MOVEMENT) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
if (!event.hasExplicitlyChangedBlock()) {
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
handleEntityMovement(event, event.getFrom(), event.getTo());
|
|
||||||
}
|
|
||||||
|
|
||||||
private static void handleEntityMovement(Cancellable event, org.bukkit.Location from, org.bukkit.Location target) {
|
|
||||||
Location toLoc = BukkitUtil.adapt(target);
|
|
||||||
Location fromLoc = BukkitUtil.adapt(from);
|
|
||||||
PlotArea tarea = toLoc.getPlotArea();
|
PlotArea tarea = toLoc.getPlotArea();
|
||||||
if (tarea == null) {
|
if (tarea == null) {
|
||||||
return;
|
return;
|
||||||
@ -156,10 +124,52 @@ public class PaperListener implements Listener {
|
|||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (tplot == null || tplot.getId().equals(fplot.getId())) {
|
if (tplot == null || tplot.getId().hashCode() == fplot.getId().hashCode()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
if (fplot.isMerged() && fplot.getConnectedPlots().contains(tplot)) {
|
if (fplot.isMerged() && fplot.getConnectedPlots().contains(fplot)) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
event.setCancelled(true);
|
||||||
|
}
|
||||||
|
|
||||||
|
@EventHandler
|
||||||
|
public void onEntityPathfind(SlimePathfindEvent event) {
|
||||||
|
if (!Settings.Paper_Components.ENTITY_PATHING) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Slime slime = event.getEntity();
|
||||||
|
|
||||||
|
Block b = slime.getTargetBlockExact(4);
|
||||||
|
if (b == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Location toLoc = BukkitUtil.adapt(b.getLocation());
|
||||||
|
Location fromLoc = BukkitUtil.adapt(event.getEntity().getLocation());
|
||||||
|
PlotArea tarea = toLoc.getPlotArea();
|
||||||
|
if (tarea == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
PlotArea farea = fromLoc.getPlotArea();
|
||||||
|
if (farea == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (tarea != farea) {
|
||||||
|
event.setCancelled(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Plot tplot = toLoc.getPlot();
|
||||||
|
Plot fplot = fromLoc.getPlot();
|
||||||
|
if (tplot == null ^ fplot == null) {
|
||||||
|
event.setCancelled(true);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (tplot == null || tplot.getId().hashCode() == fplot.getId().hashCode()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (fplot.isMerged() && fplot.getConnectedPlots().contains(fplot)) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
event.setCancelled(true);
|
event.setCancelled(true);
|
||||||
|
@ -62,28 +62,19 @@ public class BukkitQueueCoordinator extends BasicQueueCoordinator {
|
|||||||
private static final SideEffectSet EDGE_LIGHTING_SIDE_EFFECT_SET;
|
private static final SideEffectSet EDGE_LIGHTING_SIDE_EFFECT_SET;
|
||||||
|
|
||||||
static {
|
static {
|
||||||
NO_SIDE_EFFECT_SET = enableNetworkIfNeeded()
|
NO_SIDE_EFFECT_SET = SideEffectSet.none().with(SideEffect.LIGHTING, SideEffect.State.OFF).with(
|
||||||
.with(SideEffect.LIGHTING, SideEffect.State.OFF)
|
SideEffect.NEIGHBORS,
|
||||||
.with(SideEffect.NEIGHBORS, SideEffect.State.OFF);
|
SideEffect.State.OFF
|
||||||
EDGE_SIDE_EFFECT_SET = NO_SIDE_EFFECT_SET
|
);
|
||||||
.with(SideEffect.UPDATE, SideEffect.State.ON)
|
EDGE_SIDE_EFFECT_SET = SideEffectSet.none().with(SideEffect.UPDATE, SideEffect.State.ON).with(
|
||||||
.with(SideEffect.NEIGHBORS, SideEffect.State.ON);
|
SideEffect.NEIGHBORS,
|
||||||
LIGHTING_SIDE_EFFECT_SET = NO_SIDE_EFFECT_SET
|
SideEffect.State.ON
|
||||||
.with(SideEffect.NEIGHBORS, SideEffect.State.OFF);
|
);
|
||||||
EDGE_LIGHTING_SIDE_EFFECT_SET = NO_SIDE_EFFECT_SET
|
LIGHTING_SIDE_EFFECT_SET = SideEffectSet.none().with(SideEffect.NEIGHBORS, SideEffect.State.OFF);
|
||||||
.with(SideEffect.UPDATE, SideEffect.State.ON)
|
EDGE_LIGHTING_SIDE_EFFECT_SET = SideEffectSet.none().with(SideEffect.UPDATE, SideEffect.State.ON).with(
|
||||||
.with(SideEffect.NEIGHBORS, SideEffect.State.ON);
|
SideEffect.NEIGHBORS,
|
||||||
}
|
SideEffect.State.ON
|
||||||
|
);
|
||||||
// make sure block changes are sent
|
|
||||||
private static SideEffectSet enableNetworkIfNeeded() {
|
|
||||||
SideEffect network;
|
|
||||||
try {
|
|
||||||
network = SideEffect.valueOf("NETWORK");
|
|
||||||
} catch (IllegalArgumentException ignored) {
|
|
||||||
return SideEffectSet.none();
|
|
||||||
}
|
|
||||||
return SideEffectSet.none().with(network, SideEffect.State.ON);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
private org.bukkit.World bukkitWorld;
|
private org.bukkit.World bukkitWorld;
|
||||||
|
@ -56,8 +56,7 @@ public class Music extends SubCommand {
|
|||||||
.asList("music_disc_13", "music_disc_cat", "music_disc_blocks", "music_disc_chirp",
|
.asList("music_disc_13", "music_disc_cat", "music_disc_blocks", "music_disc_chirp",
|
||||||
"music_disc_far", "music_disc_mall", "music_disc_mellohi", "music_disc_stal",
|
"music_disc_far", "music_disc_mall", "music_disc_mellohi", "music_disc_stal",
|
||||||
"music_disc_strad", "music_disc_ward", "music_disc_11", "music_disc_wait", "music_disc_otherside",
|
"music_disc_strad", "music_disc_ward", "music_disc_11", "music_disc_wait", "music_disc_otherside",
|
||||||
"music_disc_pigstep", "music_disc_5", "music_disc_relic", "music_disc_creator",
|
"music_disc_pigstep", "music_disc_5", "music_disc_relic"
|
||||||
"music_disc_creator_music_box", "music_disc_precipice"
|
|
||||||
);
|
);
|
||||||
|
|
||||||
private final InventoryUtil inventoryUtil;
|
private final InventoryUtil inventoryUtil;
|
||||||
|
@ -26,7 +26,6 @@ import org.apache.logging.log4j.Logger;
|
|||||||
|
|
||||||
import java.io.File;
|
import java.io.File;
|
||||||
import java.io.PrintWriter;
|
import java.io.PrintWriter;
|
||||||
import java.lang.annotation.Documented;
|
|
||||||
import java.lang.annotation.ElementType;
|
import java.lang.annotation.ElementType;
|
||||||
import java.lang.annotation.Retention;
|
import java.lang.annotation.Retention;
|
||||||
import java.lang.annotation.RetentionPolicy;
|
import java.lang.annotation.RetentionPolicy;
|
||||||
@ -373,7 +372,6 @@ public class Config {
|
|||||||
*/
|
*/
|
||||||
@Retention(RetentionPolicy.RUNTIME)
|
@Retention(RetentionPolicy.RUNTIME)
|
||||||
@Target({ElementType.FIELD, ElementType.TYPE})
|
@Target({ElementType.FIELD, ElementType.TYPE})
|
||||||
@Documented
|
|
||||||
public @interface Comment {
|
public @interface Comment {
|
||||||
|
|
||||||
String[] value();
|
String[] value();
|
||||||
|
@ -651,8 +651,6 @@ public class Settings extends Config {
|
|||||||
public static boolean PAPER_LISTENERS = true;
|
public static boolean PAPER_LISTENERS = true;
|
||||||
@Comment("Prevent entities from leaving plots")
|
@Comment("Prevent entities from leaving plots")
|
||||||
public static boolean ENTITY_PATHING = true;
|
public static boolean ENTITY_PATHING = true;
|
||||||
@Comment("Prevent entities from leaving plots, even by pushing or pulling")
|
|
||||||
public static boolean ENTITY_MOVEMENT = false;
|
|
||||||
@Comment(
|
@Comment(
|
||||||
"Cancel entity spawns when the chunk is loaded if the PlotArea's mob spawning is off")
|
"Cancel entity spawns when the chunk is loaded if the PlotArea's mob spawning is off")
|
||||||
public static boolean CANCEL_CHUNK_SPAWN = true;
|
public static boolean CANCEL_CHUNK_SPAWN = true;
|
||||||
|
@ -22,7 +22,7 @@ plugins {
|
|||||||
}
|
}
|
||||||
|
|
||||||
group = "com.intellectualsites.plotsquared"
|
group = "com.intellectualsites.plotsquared"
|
||||||
version = "7.4.1"
|
version = "7.4.1-SNAPSHOT"
|
||||||
|
|
||||||
if (!File("$rootDir/.git").exists()) {
|
if (!File("$rootDir/.git").exists()) {
|
||||||
logger.lifecycle("""
|
logger.lifecycle("""
|
||||||
@ -79,8 +79,8 @@ subprojects {
|
|||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
// Tests
|
// Tests
|
||||||
testImplementation("org.junit.jupiter:junit-jupiter:5.11.4")
|
testImplementation("org.junit.jupiter:junit-jupiter:5.11.3")
|
||||||
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.11.4")
|
testRuntimeOnly("org.junit.platform:junit-platform-launcher:1.11.3")
|
||||||
}
|
}
|
||||||
|
|
||||||
plugins.withId("java") {
|
plugins.withId("java") {
|
||||||
|
@ -3,17 +3,17 @@
|
|||||||
paper = "1.20.4-R0.1-SNAPSHOT"
|
paper = "1.20.4-R0.1-SNAPSHOT"
|
||||||
guice = "7.0.0"
|
guice = "7.0.0"
|
||||||
spotbugs = "4.8.6"
|
spotbugs = "4.8.6"
|
||||||
checkerqual = "3.48.3"
|
checkerqual = "3.48.2"
|
||||||
gson = "2.10"
|
gson = "2.10"
|
||||||
guava = "31.1-jre"
|
guava = "31.1-jre"
|
||||||
snakeyaml = "2.0"
|
snakeyaml = "2.0"
|
||||||
adventure = "4.18.0"
|
adventure = "4.17.0"
|
||||||
adventure-bukkit = "4.3.4"
|
adventure-bukkit = "4.3.4"
|
||||||
log4j = "2.19.0"
|
log4j = "2.19.0"
|
||||||
|
|
||||||
# Plugins
|
# Plugins
|
||||||
worldedit = "7.2.20"
|
worldedit = "7.2.20"
|
||||||
fawe = "2.12.3"
|
fawe = "2.12.1"
|
||||||
placeholderapi = "2.11.6"
|
placeholderapi = "2.11.6"
|
||||||
luckperms = "5.4"
|
luckperms = "5.4"
|
||||||
essentialsx = "2.20.1"
|
essentialsx = "2.20.1"
|
||||||
|
2
gradle/wrapper/gradle-wrapper.properties
vendored
2
gradle/wrapper/gradle-wrapper.properties
vendored
@ -1,6 +1,6 @@
|
|||||||
distributionBase=GRADLE_USER_HOME
|
distributionBase=GRADLE_USER_HOME
|
||||||
distributionPath=wrapper/dists
|
distributionPath=wrapper/dists
|
||||||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
|
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
|
||||||
networkTimeout=10000
|
networkTimeout=10000
|
||||||
validateDistributionUrl=true
|
validateDistributionUrl=true
|
||||||
zipStoreBase=GRADLE_USER_HOME
|
zipStoreBase=GRADLE_USER_HOME
|
||||||
|
3
gradlew
vendored
3
gradlew
vendored
@ -86,7 +86,8 @@ done
|
|||||||
# shellcheck disable=SC2034
|
# shellcheck disable=SC2034
|
||||||
APP_BASE_NAME=${0##*/}
|
APP_BASE_NAME=${0##*/}
|
||||||
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
# Discard cd standard output in case $CDPATH is set (https://github.com/gradle/gradle/issues/25036)
|
||||||
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s\n' "$PWD" ) || exit
|
APP_HOME=$( cd -P "${APP_HOME:-./}" > /dev/null && printf '%s
|
||||||
|
' "$PWD" ) || exit
|
||||||
|
|
||||||
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
# Use the maximum available, or set MAX_FD != -1 to use that value.
|
||||||
MAX_FD=maximum
|
MAX_FD=maximum
|
||||||
|
Reference in New Issue
Block a user