Unclaiming a plot should call plotExit()

This commit is contained in:
MattBDev 2016-12-09 20:58:05 -05:00
parent a554ae5633
commit 9ad45750ee

View File

@ -29,6 +29,7 @@ import com.intellectualcrafters.plot.util.block.LocalBlockQueue;
import com.intellectualcrafters.plot.util.expiry.ExpireManager; import com.intellectualcrafters.plot.util.expiry.ExpireManager;
import com.intellectualcrafters.plot.util.expiry.PlotAnalysis; import com.intellectualcrafters.plot.util.expiry.PlotAnalysis;
import com.plotsquared.listener.PlotListener; import com.plotsquared.listener.PlotListener;
import java.awt.geom.Area; import java.awt.geom.Area;
import java.awt.geom.PathIterator; import java.awt.geom.PathIterator;
import java.awt.geom.Rectangle2D; import java.awt.geom.Rectangle2D;
@ -46,7 +47,6 @@ import java.util.Map.Entry;
import java.util.Set; import java.util.Set;
import java.util.UUID; import java.util.UUID;
import java.util.concurrent.ConcurrentHashMap; import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.atomic.AtomicInteger;
/** /**
* The plot class<br> * The plot class<br>
@ -767,7 +767,6 @@ public class Plot {
@Override @Override
public void run() { public void run() {
if (queue.isEmpty()) { if (queue.isEmpty()) {
AtomicInteger finished = new AtomicInteger(0);
Runnable run = new Runnable() { Runnable run = new Runnable() {
@Override @Override
public void run() { public void run() {
@ -1095,8 +1094,8 @@ public class Plot {
DBFunc.delete(current); DBFunc.delete(current);
current.owner = null; current.owner = null;
current.settings = null; current.settings = null;
for (PlotPlayer pp : current.getPlayersInPlot()) { for (PlotPlayer player : current.getPlayersInPlot()) {
PlotListener.plotEntry(pp, current); PlotListener.plotExit(player, current);
} }
} }
return true; return true;