Partially Overhauled Commands #28

Merged
SenseiKiwi merged 4 commits from master into master 2013-06-18 21:25:32 +00:00
2 changed files with 2 additions and 14 deletions
Showing only changes of commit e37312e733 - Show all commits

View File

@@ -23,7 +23,7 @@ public class CommandDeleteRifts extends CommandBase
private static DDProperties properties = null;
public String getCommandName()//the name of our command
public String getCommandName()
{
return "dimdoors-cleanupRifts";
}

View File

@@ -16,12 +16,8 @@ public class CommandPruneDims extends CommandBase
return "dimdoors-prunePockets";
}
@Override
public void processCommand(ICommandSender var1, String[] var2)
{
int numRemoved=0;
ArrayList dimsWithLinks=new ArrayList();
@@ -56,14 +52,6 @@ public class CommandPruneDims extends CommandBase
}
}
dimHelper.instance.save();
this.getCommandSenderAsPlayer(var1).sendChatToPlayer("Removed "+numRemoved+" unreachable pocket dims.");
getCommandSenderAsPlayer(var1).sendChatToPlayer("Removed "+numRemoved+" unreachable pocket dims.");
}
}