mirror of
https://github.com/TotalFreedomMC/TF-PlotSquared.git
synced 2025-02-11 11:40:41 +00:00
oops sorry.
Signed-off-by: matt <4009945+MattBDev@users.noreply.github.com>
This commit is contained in:
parent
672fb0f829
commit
61cb288382
2 changed files with 2 additions and 2 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -15,7 +15,7 @@ public class LocationTest {
|
|||
Location clone = location1.clone();
|
||||
world = "normal";
|
||||
logger.info(clone.toString());
|
||||
location1.getBlockVector3()
|
||||
//location1.getBlockVector3();
|
||||
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue