Added plot clear on claim. AND A LOT OF OTHER MORE IMPORTANT THINGS

Like... I added that space there, between that equals sign and the word
'this'
- Re-added old plot clear algorithm (in case SetBlockFast fails)
- Made some performance improvements with plot clear
- Used built in code cleaning in eclipse to make everything look nicer
- Bug fixes
This commit is contained in:
boy0001 2014-09-24 22:21:43 +10:00
parent 874f7575c1
commit d7bd7ba093
73 changed files with 5197 additions and 4756 deletions

View file

@ -11,6 +11,7 @@ package com.intellectualcrafters.plot.commands;
/**
* Created by Citymonstret on 2014-08-03.
*
* @author Citymonstret
*/
public enum Command {
@ -68,7 +69,7 @@ public enum Command {
private CommandPermission permission;
/**
*
*
* @param command
*/
Command(String command) {
@ -78,7 +79,7 @@ public enum Command {
}
/**
*
*
* @param command
* @param permission
*/
@ -89,7 +90,7 @@ public enum Command {
}
/**
*
*
* @param command
* @param alias
*/
@ -100,7 +101,7 @@ public enum Command {
}
/**
*
*
* @param Command
* @param alias
* @param permission
@ -112,7 +113,7 @@ public enum Command {
}
/**
*
*
* @return
*/
public String getCommand() {
@ -120,7 +121,7 @@ public enum Command {
}
/**
*
*
* @return
*/
public String getAlias() {
@ -128,10 +129,10 @@ public enum Command {
}
/**
*
*
* @return
*/
public CommandPermission getPermission(){
public CommandPermission getPermission() {
return this.permission;
}
}