mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-25 22:56:45 +01:00
Fixes container contents spillage on plot clear
TODO: fix component setting for ^
This commit is contained in:
parent
f2431c869f
commit
74a967b535
@ -1401,6 +1401,7 @@ public class MainUtil {
|
||||
if (!EventUtil.manager.callClear(plot.world, plot.id)) {
|
||||
return false;
|
||||
}
|
||||
final HashSet<RegionWrapper> regions = getRegions(plot);
|
||||
final HashSet<Plot> plots = getConnectedPlots(plot);
|
||||
final ArrayDeque<Plot> queue = new ArrayDeque<>(plots);
|
||||
removeSign(plot);
|
||||
@ -1416,6 +1417,10 @@ public class MainUtil {
|
||||
@Override
|
||||
public void run() {
|
||||
if (finished.incrementAndGet() >= plots.size()) {
|
||||
for (RegionWrapper region : regions) {
|
||||
Location[] corners = getCorners(plot.world, region);
|
||||
ChunkManager.manager.clearAllEntities(corners[0], corners[1]);
|
||||
}
|
||||
TaskManager.runTask(whenDone);
|
||||
}
|
||||
}
|
||||
|
Binary file not shown.
Loading…
Reference in New Issue
Block a user