From 478ad9670b1a007943e1a37b5ede723193b2ab7a Mon Sep 17 00:00:00 2001 From: Jesse Boyd Date: Thu, 16 Mar 2017 14:15:00 +1100 Subject: [PATCH] Fixes #1476 --- .../com/intellectualcrafters/plot/database/SQLManager.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/Core/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java b/Core/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java index ee2a44a25..31b11ad0b 100644 --- a/Core/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java +++ b/Core/src/main/java/com/intellectualcrafters/plot/database/SQLManager.java @@ -1730,8 +1730,7 @@ public class SQLManager implements AbstractDB { time = System.currentTimeMillis() + id; } } - Plot p = new Plot(plot_id, user, new HashSet(), new HashSet(), new HashSet(), "", null, null, null, - new boolean[]{false, false, false, false}, time, id); + Plot p = new Plot(plot_id, user, new HashSet(), new HashSet(), new HashSet(), "", null, null, null, new boolean[]{false, false, false, false}, time, id); HashMap map = newPlots.get(areaid); if (map != null) { Plot last = map.put(p.getId(), p); @@ -1742,7 +1741,6 @@ public class SQLManager implements AbstractDB { PS.debug("&cPLOT #" + id + "(" + last + ") in `" + this.prefix + "plot` is a duplicate. Delete this plot or set `database-purger: true` in the settings.yml."); } - continue; } } else { map = new HashMap<>();