Update converter

This commit is contained in:
boy0001 2015-05-29 03:41:25 +10:00
parent 48ccc6552b
commit aa09f02413
3 changed files with 3 additions and 5 deletions

View File

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

View File

@ -115,12 +115,11 @@ public class ClassicPlotMeConnector extends APlotMeConnector {
merges.put(world, new HashMap<PlotId,boolean[]>());
}
}
if (merge) {
int tx = r.getInt("topX");
int tz = r.getInt("topZ");
int bx = r.getInt("bottomX");
int bz = r.getInt("bottomZ");
int bx = r.getInt("bottomX") - 1;
int bz = r.getInt("bottomZ") - 1;
int path = roadWidth.get(world);
int plot = plotWidth.get(world);
Location top = getPlotTopLocAbs(path, plot, id);

View File

@ -990,7 +990,6 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi
if (plot != null) {
final PlotPlayer pp = BukkitUtil.getPlayer(player);
if (plot.isDenied(pp.getUUID())) {
System.out.print(2);
if (Permissions.hasPermission(pp, "plots.admin.enter.denied")) {
return;
}