This commit is contained in:
boy0001
2015-07-26 14:11:18 +10:00
parent 4231ae6755
commit 08cc8c58f2
7 changed files with 23 additions and 40 deletions

View File

@ -336,10 +336,12 @@ public class Plot {
});
}
public void unclaim() {
public boolean unclaim() {
if (PS.get().removePlot(world, id, true)) {
DBFunc.delete(Plot.this);
return true;
}
return false;
}
/**