Fixed plot deletion and unable to locate sign messages

This commit is contained in:
boy0001 2015-02-23 11:58:47 +11:00
parent 9b20e096f0
commit 625d19b5d0
4 changed files with 6 additions and 8 deletions

View file

@ -204,11 +204,7 @@ public class PlotSquared {
}
public static boolean removePlot(final String world, final PlotId id, final boolean callEvent) {
if (callEvent) {
if (!IMP.callRemovePlot(world, id)) {
return false;
}
}
// FIXME plot remove event
plots.get(world).remove(id);
if (MainUtil.lastPlot.containsKey(world)) {
final PlotId last = MainUtil.lastPlot.get(world);