mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-12 03:59:22 +00:00
Fixed plot clearing
This commit is contained in:
parent
c689dff014
commit
fb076adfab
1 changed files with 2 additions and 7 deletions
|
@ -100,7 +100,6 @@ public class HybridPlotManager extends ClassicPlotManager {
|
|||
TaskManager.runTaskLater(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
setWall(dpw, plot.id, new PlotBlock[] { wall });
|
||||
TaskManager.runTaskLater(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
|
@ -147,14 +146,10 @@ public class HybridPlotManager extends ClassicPlotManager {
|
|||
}
|
||||
final int I = i;
|
||||
final int J = j;
|
||||
TaskManager.runTaskLater(new Runnable() {
|
||||
@Override
|
||||
public void run() {
|
||||
BukkitUtil.regenerateChunk(world, I / 16, J / 16);
|
||||
}
|
||||
}, PseudoRandom.random(40));
|
||||
BukkitUtil.regenerateChunk(world, I / 16, J / 16);
|
||||
}
|
||||
}
|
||||
setWall(dpw, plot.id, new PlotBlock[] { wall });
|
||||
final Location max = mx;
|
||||
final Location min = mn;
|
||||
if (min == null) {
|
||||
|
|
Loading…
Reference in a new issue