Fixed for worldguard 6 + fixes

- Improved plot perm checking (faster)
- Added toString() method for PlotId
- Fixed WorldGuard listener for WG 6
This commit is contained in:
boy0001 2014-09-25 14:58:34 +10:00
parent 26249d00a3
commit f331b1abaa
3 changed files with 11 additions and 9 deletions

View File

@ -195,15 +195,12 @@ public class PlayerFunctions {
if (p.hasPermission("plots.admin")) {
return Integer.MAX_VALUE;
}
int y = 0;
for (int x = 1; x <= 100; x++) {
if (p.hasPermission("plots.plot." + x)) {
y = x;
} else {
break;
for (int x = 0; x <= 100; x++) {
if (p.hasPermission("plots.plot." + (100-x))) {
return 100-x;
}
}
return y;
return 0;
}
/**

View File

@ -23,6 +23,11 @@ public class PlotId {
PlotId other = (PlotId) obj;
return ((this.x == other.x) && (this.y == other.y));
}
@Override
public String toString() {
return this.x+";"+this.y;
}
@Override
public int hashCode() {

View File

@ -41,7 +41,7 @@ public class WorldGuardListener implements Listener {
BlockVector vector1 = new BlockVector(location1.getBlockX(), 1, location1.getBlockZ());
BlockVector vector2 = new BlockVector(location2.getBlockX(), plot.getWorld().getMaxHeight(), location2.getBlockZ());
ProtectedRegion region = new ProtectedCuboidRegion(plot.getId().x + ";" + plot.getId().y, vector1, vector2);
ProtectedRegion region = new ProtectedCuboidRegion(plot.getId().x + "-" + plot.getId().y, vector1, vector2);
DefaultDomain owner = new DefaultDomain();
owner.addPlayer(PlotMain.worldGuard.wrapPlayer(player));
@ -57,6 +57,6 @@ public class WorldGuardListener implements Listener {
World world = Bukkit.getWorld(event.getWorld());
RegionManager manager = PlotMain.worldGuard.getRegionManager(world);
manager.removeRegion(plot.x + ";" + plot.y);
manager.removeRegion(plot.x + "-" + plot.y);
}
}