jklasdklasdkml lk;as l;asd

This commit is contained in:
boy0001 2015-02-20 21:16:44 +11:00
parent f11c089a97
commit 923a78a927

View File

@ -492,18 +492,29 @@ public class PlayerEvents extends com.intellectualcrafters.plot.listeners.PlotLi
@EventHandler(priority = EventPriority.HIGH, ignoreCancelled = true)
public static void onStructureGrow(final StructureGrowEvent e) {
if (!isPlotWorld(e.getWorld().getName())) {
return;
}
final List<BlockState> blocks = e.getBlocks();
boolean remove = false;
for (int i = blocks.size() - 1; i >= 0; i--) {
if (remove || isPlotWorld(blocks.get(i).getLocation())) {
if (remove) {
e.getBlocks().remove(i);
remove = true;
final Location loc = blocks.get(i).getLocation();
if (!isInPlot(loc)) {
if (isPlotArea(loc)) {
e.getBlocks().remove(i);
}
}
}
else {
final Location loc = BukkitUtil.getLocation(blocks.get(i).getLocation());
if (!isPlotArea(loc)) {
remove = true;
e.getBlocks().remove(i);
}
}
}
}