From 8d61f84466eec4cf36da1ef080d1bb4259eadb9f Mon Sep 17 00:00:00 2001 From: MattBDev <4009945+MattBDev@users.noreply.github.com> Date: Fri, 27 Mar 2020 12:28:09 -0400 Subject: [PATCH] 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. --- .../fawe/bukkit/regions/plotsquared/PlotSquaredFeature.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/worldedit-bukkit/src/main/java/com/boydti/fawe/bukkit/regions/plotsquared/PlotSquaredFeature.java b/worldedit-bukkit/src/main/java/com/boydti/fawe/bukkit/regions/plotsquared/PlotSquaredFeature.java index 0f08e2ec9..6afaaf5bd 100644 --- a/worldedit-bukkit/src/main/java/com/boydti/fawe/bukkit/regions/plotsquared/PlotSquaredFeature.java +++ b/worldedit-bukkit/src/main/java/com/boydti/fawe/bukkit/regions/plotsquared/PlotSquaredFeature.java @@ -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); }