From 780d3d7703e734ad526b47e19717994c49f33065 Mon Sep 17 00:00:00 2001 From: dordsor21 Date: Thu, 20 Dec 2018 20:23:11 +0000 Subject: [PATCH] *Don't set the the cuboid block by block if we've already technically done that --- .../plotsquared/bukkit/util/block/GenChunk.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/util/block/GenChunk.java b/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/util/block/GenChunk.java index 65d05ee4a..eb68c77f7 100644 --- a/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/util/block/GenChunk.java +++ b/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/util/block/GenChunk.java @@ -79,8 +79,6 @@ public class GenChunk extends ScopedLocalBlockQueue { int end = start + 256; Arrays.fill(data, start, end, block); } - } else { - super.setCuboid(pos1, pos2, block); } int minx = pos1.getX() < pos2.getX() ? pos1.getX() : pos2.getX(); int miny = pos1.getY() < pos2.getY() ? pos1.getY() : pos2.getY();