MegaPlots mostly done now

Fixed up methods throwing errors when not merged properly
Plot merge command now merges plots as far as the plugin is concerned
- Roads are not removed between the plots
- No way to unlink a merged plot

Added plot delete command (permission: plots.clear.delete)
Modified plot clear to simply clear the terrain.
This commit is contained in:
boy0001 2014-09-26 14:01:30 +10:00
parent eb7106eb76
commit c6859a5d50
10 changed files with 293 additions and 151 deletions

View file

@ -32,9 +32,13 @@ public enum Command {
*/
MERGE("merge", "m"),
/**
*
*
*/
CLEAR("clear", "clear", new CommandPermission("plots.clear")),
/**
*
*/
CLEAR("clear", "delete", new CommandPermission("plots.clear")),
DELETE("delete", "d", new CommandPermission("plots.clear.delete")),
/**
*
*/