mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-21 11:45:19 +01:00
Add a meta to hold current process of plot merge
This commit is contained in:
parent
ea19ff783f
commit
8d55304242
@ -341,7 +341,7 @@ public class BlockEventListener implements Listener {
|
||||
return;
|
||||
}
|
||||
Plot plot = area.getPlot(location);
|
||||
if (plot != null) {
|
||||
if (plot != null && !plot.isMerging()) {
|
||||
BukkitPlayer plotPlayer = BukkitUtil.adapt(player);
|
||||
// == rather than <= as we only care about the "ground level" not being destroyed
|
||||
if (event.getBlock().getY() == area.getMinGenHeight()) {
|
||||
|
@ -1244,6 +1244,32 @@ public class Plot {
|
||||
return value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the plot into merging process
|
||||
*/
|
||||
public void setMerging() {
|
||||
for (Plot plot : this.getConnectedPlots()) {
|
||||
plot.setMeta("merging", true);
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* @return the current state of merging process
|
||||
*/
|
||||
public Boolean isMerging() {
|
||||
Boolean value = (Boolean) this.getMeta("merging");
|
||||
return value != null && value;
|
||||
}
|
||||
|
||||
/**
|
||||
* Removes the merging process
|
||||
*/
|
||||
public void removeMerging() {
|
||||
for (Plot plot : this.getConnectedPlots()) {
|
||||
plot.deleteMeta("merging");
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* Decrement the number of tracked tasks this plot is running<br>
|
||||
* - Used to track/limit the number of things a player can do on the plot at once
|
||||
|
@ -582,6 +582,8 @@ public final class PlotModificationManager {
|
||||
Plot other = current.getRelative(Direction.NORTH);
|
||||
if (other != null && other.isOwner(uuid) && (other.getBasePlot(false).equals(current.getBasePlot(false))
|
||||
|| (plots = other.getConnectedPlots()).size() <= max && frontier.addAll(plots) && (max -= plots.size()) != -1)) {
|
||||
current.setMerging();
|
||||
other.setMerging();
|
||||
current.mergePlot(other, removeRoads, queue);
|
||||
merged.add(current.getId());
|
||||
merged.add(other.getId());
|
||||
@ -593,12 +595,16 @@ public final class PlotModificationManager {
|
||||
ids.add(other.getId());
|
||||
this.plot.getManager().finishPlotMerge(ids, queue);
|
||||
}
|
||||
current.removeMerging();
|
||||
other.removeMerging();
|
||||
}
|
||||
}
|
||||
if (max >= 0 && (dir == Direction.ALL || dir == Direction.EAST) && !current.isMerged(Direction.EAST)) {
|
||||
Plot other = current.getRelative(Direction.EAST);
|
||||
if (other != null && other.isOwner(uuid) && (other.getBasePlot(false).equals(current.getBasePlot(false))
|
||||
|| (plots = other.getConnectedPlots()).size() <= max && frontier.addAll(plots) && (max -= plots.size()) != -1)) {
|
||||
current.setMerging();
|
||||
other.setMerging();
|
||||
current.mergePlot(other, removeRoads, queue);
|
||||
merged.add(current.getId());
|
||||
merged.add(other.getId());
|
||||
@ -610,12 +616,16 @@ public final class PlotModificationManager {
|
||||
ids.add(other.getId());
|
||||
this.plot.getManager().finishPlotMerge(ids, queue);
|
||||
}
|
||||
current.removeMerging();
|
||||
other.removeMerging();
|
||||
}
|
||||
}
|
||||
if (max >= 0 && (dir == Direction.ALL || dir == Direction.SOUTH) && !current.isMerged(Direction.SOUTH)) {
|
||||
Plot other = current.getRelative(Direction.SOUTH);
|
||||
if (other != null && other.isOwner(uuid) && (other.getBasePlot(false).equals(current.getBasePlot(false))
|
||||
|| (plots = other.getConnectedPlots()).size() <= max && frontier.addAll(plots) && (max -= plots.size()) != -1)) {
|
||||
current.setMerging();
|
||||
other.setMerging();
|
||||
current.mergePlot(other, removeRoads, queue);
|
||||
merged.add(current.getId());
|
||||
merged.add(other.getId());
|
||||
@ -627,12 +637,16 @@ public final class PlotModificationManager {
|
||||
ids.add(other.getId());
|
||||
this.plot.getManager().finishPlotMerge(ids, queue);
|
||||
}
|
||||
current.removeMerging();
|
||||
other.removeMerging();
|
||||
}
|
||||
}
|
||||
if (max >= 0 && (dir == Direction.ALL || dir == Direction.WEST) && !current.isMerged(Direction.WEST)) {
|
||||
Plot other = current.getRelative(Direction.WEST);
|
||||
if (other != null && other.isOwner(uuid) && (other.getBasePlot(false).equals(current.getBasePlot(false))
|
||||
|| (plots = other.getConnectedPlots()).size() <= max && frontier.addAll(plots) && (max -= plots.size()) != -1)) {
|
||||
current.setMerging();
|
||||
other.setMerging();
|
||||
current.mergePlot(other, removeRoads, queue);
|
||||
merged.add(current.getId());
|
||||
merged.add(other.getId());
|
||||
@ -644,6 +658,8 @@ public final class PlotModificationManager {
|
||||
ids.add(other.getId());
|
||||
this.plot.getManager().finishPlotMerge(ids, queue);
|
||||
}
|
||||
current.removeMerging();
|
||||
other.removeMerging();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user