2014-12-28 17:22:53 +01:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
|
|
|
import com.massivecraft.factions.Factions;
|
|
|
|
import com.massivecraft.massivecore.cmd.VisibilityMode;
|
|
|
|
import com.massivecraft.massivecore.util.MUtil;
|
|
|
|
|
|
|
|
public class CmdFactionsRankOld extends FactionsCommand
|
|
|
|
{
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// FIELDS
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2014-12-30 10:01:54 +01:00
|
|
|
public final String rankName;
|
2014-12-28 17:22:53 +01:00
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
public CmdFactionsRankOld(String rank)
|
|
|
|
{
|
2014-12-30 10:01:54 +01:00
|
|
|
// Fields
|
2014-12-28 17:22:53 +01:00
|
|
|
this.rankName = rank.toLowerCase();
|
|
|
|
|
|
|
|
// Aliases
|
|
|
|
this.addAliases(rankName);
|
|
|
|
|
|
|
|
// Args
|
|
|
|
this.addRequiredArg("player");
|
|
|
|
|
2014-12-30 10:01:54 +01:00
|
|
|
// VisibilityMode
|
2014-12-28 17:22:53 +01:00
|
|
|
this.setVisibilityMode(VisibilityMode.INVISIBLE);
|
|
|
|
}
|
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform()
|
|
|
|
{
|
2014-12-30 10:01:54 +01:00
|
|
|
Factions.get().getOuterCmdFactions().cmdFactionsRank.execute(sender, MUtil.list(this.arg(0), this.rankName));
|
2014-12-28 17:22:53 +01:00
|
|
|
}
|
2014-12-30 10:01:54 +01:00
|
|
|
|
2014-12-28 17:22:53 +01:00
|
|
|
}
|