Update version

This commit is contained in:
boy0001 2015-03-13 00:17:37 +11:00
parent 76daef8440
commit 79d548aaf9
2 changed files with 2 additions and 2 deletions

View File

@ -8,7 +8,7 @@
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<artifactId>PlotSquared</artifactId>
<version>2.8.7</version>
<version>2.8.8</version>
<name>PlotSquared</name>
<packaging>jar</packaging>
<build>

View File

@ -158,7 +158,7 @@ public class MainUtil {
public static void update(final Location loc) {
final String world = loc.getWorld();
int ox = loc.getX() >> 4;
int oz = loc.getX() >> 4;
int oz = loc.getZ() >> 4;
final ArrayList<ChunkLoc> chunks = new ArrayList<>();
final int distance = BukkitUtil.getViewDistance();
for (int cx = -distance; cx <= distance; cx++) {