Here you go.

This commit is contained in:
boy0001
2015-09-03 22:40:36 +10:00
parent dfc32741fa
commit 4e321d2b27
9 changed files with 11 additions and 9 deletions

View File

@ -595,11 +595,11 @@ public class Plot {
/**
* Unlink a plot and remove the roads
* @see MainUtil#unlinkPlot(Plot)
* @see MainUtil#unlinkPlot(Plot, boolean removeRoad)
* @return true if plot was linked
*/
public boolean unlink() {
return MainUtil.unlinkPlot(this);
return MainUtil.unlinkPlot(this, true);
}
/**