Added tip to /f set. Empowered board interface with extra methods.

This commit is contained in:
Olof Larsson
2014-10-22 07:50:30 +02:00
parent b1c0512b46
commit 2ac847fe14
6 changed files with 153 additions and 6 deletions

View File

@@ -40,7 +40,7 @@ public class CmdFactionsDisband extends FactionsCommand
@Override
public void perform()
{
{
// Args
Faction faction = this.arg(0, ARFaction.get(), msenderFaction);
if (faction == null) return;

View File

@@ -33,9 +33,13 @@ public class CmdFactionsSet extends FactionsCommand
this.addSubCommand(this.cmdFactionsSetSquare);
this.addSubCommand(this.cmdFactionsSetCircle);
this.addSubCommand(this.cmdFactionsSetTransfer);
this.setHelp("Tip: Set faction <h>none <i>to unclaim.");
// Requirements
this.addRequirements(ReqHasPerm.get(Perm.SET.node));
}
}