bug fixes

This commit is contained in:
boy0001 2014-09-23 12:47:45 +10:00
parent 2335b08728
commit d71ab93760
3 changed files with 74 additions and 73 deletions

View File

@ -253,7 +253,7 @@ public class PlotMain extends JavaPlugin {
public static boolean removePlot(String world, PlotId id) {
PlotDeleteEvent event = new PlotDeleteEvent(world,id);
Bukkit.getServer().getPluginManager().callEvent(event);
if(!event.isCancelled()) {
if(event.isCancelled()) {
event.setCancelled(true);
return false;
}
@ -294,7 +294,7 @@ public class PlotMain extends JavaPlugin {
if (PlayerFunctions.hasExpired(plot)) {
PlotDeleteEvent event = new PlotDeleteEvent(world,plot.id);
Bukkit.getServer().getPluginManager().callEvent(event);
if(!event.isCancelled()) {
if(event.isCancelled()) {
event.setCancelled(true);
}
else {
@ -313,7 +313,7 @@ public class PlotMain extends JavaPlugin {
if (PlayerFunctions.hasExpired(plot)) {
PlotDeleteEvent event = new PlotDeleteEvent(world,plot.id);
Bukkit.getServer().getPluginManager().callEvent(event);
if(!event.isCancelled()) {
if(event.isCancelled()) {
event.setCancelled(true);
}
else {

View File

@ -320,7 +320,7 @@ public class WorldGenerator extends ChunkGenerator {
}
// WALLS (16/16 cuboids)
if (pathsize>0) {
if (plotMinZ+1<=16) {
double start,end;
if (plotMinX+2<=16)
@ -393,6 +393,7 @@ public class WorldGenerator extends ChunkGenerator {
setCuboidRegion( 16-roadStartX, 16-roadStartX+1, 1, wallheight+1, start, 16,wallfilling);
setCuboidRegion( 16-roadStartX, 16-roadStartX+1,wallheight+1, wallheight+2, start, 16, wall);
}
}
return result;
}

View File

@ -103,7 +103,7 @@ public class Set extends SubCommand{
Flag flag = plot.settings.getFlag(args[1].toLowerCase());
PlotFlagRemoveEvent event = new PlotFlagRemoveEvent(flag,plot);
Bukkit.getServer().getPluginManager().callEvent(event);
if(!event.isCancelled()) {
if(event.isCancelled()) {
PlayerFunctions.sendMessage(plr, C.FLAG_NOT_REMOVED);
event.setCancelled(true);
return false;
@ -119,7 +119,7 @@ public class Set extends SubCommand{
Flag flag = new Flag(args[1], value);
PlotFlagAddEvent event = new PlotFlagAddEvent(flag,plot);
Bukkit.getServer().getPluginManager().callEvent(event);
if(!event.isCancelled()) {
if(event.isCancelled()) {
PlayerFunctions.sendMessage(plr, C.FLAG_NOT_ADDED);
event.setCancelled(true);
return false;