package com.massivecraft.factions.cmd; import com.massivecraft.factions.Perm; import com.massivecraft.factions.cmd.req.ReqFactionsEnabled; import com.massivecraft.mcore.cmd.HelpCommand; import com.massivecraft.mcore.cmd.req.ReqHasPerm; import com.massivecraft.mcore.cmd.req.ReqIsPlayer; public class CmdFactionsAccess extends FCommand { // -------------------------------------------- // // FIELDS // -------------------------------------------- // public CmdFactionsAccessView cmdFactionsAccessView = new CmdFactionsAccessView(); public CmdFactionsAccessPlayer cmdFactionsAccessPlayer = new CmdFactionsAccessPlayer(); public CmdFactionsAccessFaction cmdFactionsAccessFaction = new CmdFactionsAccessFaction(); // -------------------------------------------- // // CONSTRUCT // -------------------------------------------- // public CmdFactionsAccess() { // Add SubCommands this.addSubCommand(this.cmdFactionsAccessView); this.addSubCommand(this.cmdFactionsAccessPlayer); this.addSubCommand(this.cmdFactionsAccessFaction); // Aliases this.addAliases("access"); // Requirements this.addRequirements(ReqFactionsEnabled.get()); this.addRequirements(ReqIsPlayer.get()); this.addRequirements(ReqHasPerm.get(Perm.ACCESS.node)); } // -------------------------------------------- // // OVERRIDE // -------------------------------------------- // @Override public void perform() { this.getCommandChain().add(this); HelpCommand.get().execute(this.sender, this.args, this.commandChain); } }