Stop messing with the PlotSquared queue system

Stops synchronized chunk loading on PlotSquared and our queue didn't really do anything better than what PlotSquared did.
This commit is contained in:
MattBDev 2020-03-27 12:28:09 -04:00
parent 7db61be075
commit 8d61f84466

View File

@ -75,10 +75,10 @@ public class PlotSquaredFeature extends FaweMaskManager {
private void setupBlockQueue() throws RuntimeException {
// If it's going to fail, throw an error now rather than later
QueueProvider provider = QueueProvider.of(FaweLocalBlockQueue.class, null);
GlobalBlockQueue.IMP.setProvider(provider);
//QueueProvider provider = QueueProvider.of(FaweLocalBlockQueue.class, null);
//GlobalBlockQueue.IMP.setProvider(provider);
HybridPlotManager.REGENERATIVE_CLEAR = false;
log.debug(" - QueueProvider: " + FaweLocalBlockQueue.class);
//log.debug(" - QueueProvider: " + FaweLocalBlockQueue.class);
log.debug(" - HybridPlotManager.REGENERATIVE_CLEAR: " + HybridPlotManager.REGENERATIVE_CLEAR);
}