This commit is contained in:
Jesse Boyd
2016-03-29 17:39:29 +11:00
parent 5f8a55568c
commit eed8cbec5a
6 changed files with 12 additions and 22 deletions

View File

@@ -263,7 +263,6 @@ public class PS {
TaskManager.runTask(new Runnable() {
@Override
public void run() {
System.out.println("SETTING UP ECON");
EconHandler.manager = PS.this.IMP.getEconomyHandler();
}
});

View File

@@ -49,10 +49,6 @@ public class Add extends SubCommand {
@Override
public boolean onCommand(PlotPlayer plr, String[] args) {
if (args.length != 1) {
MainUtil.sendMessage(plr, C.COMMAND_SYNTAX, this.getUsage());
return true;
}
Location loc = plr.getLocation();
Plot plot = loc.getPlotAbs();
if (plot == null) {

View File

@@ -49,10 +49,6 @@ public class Remove extends SubCommand {
@Override
public boolean onCommand(PlotPlayer plr, String[] args) {
if (args.length != 1) {
MainUtil.sendMessage(plr, C.COMMAND_SYNTAX, this.getUsage());
return true;
}
Location loc = plr.getLocation();
Plot plot = loc.getPlotAbs();
if (plot == null) {

View File

@@ -48,10 +48,6 @@ public class Trust extends SubCommand {
@Override
public boolean onCommand(PlotPlayer plr, String[] args) {
if (args.length != 1) {
MainUtil.sendMessage(plr, C.COMMAND_SYNTAX, this.getUsage());
return true;
}
Location loc = plr.getLocation();
Plot plot = loc.getPlotAbs();
if (plot == null) {