From 61cb288382ddd067646c2e79df854b969d9a3699 Mon Sep 17 00:00:00 2001 From: matt <4009945+MattBDev@users.noreply.github.com> Date: Fri, 15 Mar 2019 13:39:51 -0400 Subject: [PATCH] oops sorry. Signed-off-by: matt <4009945+MattBDev@users.noreply.github.com> --- .../plotsquared/bukkit/util/BukkitChunkManager.java | 2 +- .../intellectualsites/plotsquared/plot/object/LocationTest.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/util/BukkitChunkManager.java b/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/util/BukkitChunkManager.java index c8e5ef3ce..76c9381fb 100644 --- a/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/util/BukkitChunkManager.java +++ b/Bukkit/src/main/java/com/github/intellectualsites/plotsquared/bukkit/util/BukkitChunkManager.java @@ -212,7 +212,7 @@ public class BukkitChunkManager extends ChunkManager { map.saveEntitiesIn(chunk, region); for (int x = bx & 15; x <= (tx & 15); x++) { for (int z = bz & 15; z <= (tz & 15); z++) { - map.saveBlocks(oldBukkitWorld, cxx + x, czz + z, relX, relZ); + map.saveBlocks(oldBukkitWorld, 256, cxx + x, czz + z, relX, relZ); } } } diff --git a/Core/src/test/java/com/github/intellectualsites/plotsquared/plot/object/LocationTest.java b/Core/src/test/java/com/github/intellectualsites/plotsquared/plot/object/LocationTest.java index 9f83151a5..a421137c0 100644 --- a/Core/src/test/java/com/github/intellectualsites/plotsquared/plot/object/LocationTest.java +++ b/Core/src/test/java/com/github/intellectualsites/plotsquared/plot/object/LocationTest.java @@ -15,7 +15,7 @@ public class LocationTest { Location clone = location1.clone(); world = "normal"; logger.info(clone.toString()); - location1.getBlockVector3() + //location1.getBlockVector3(); } }