Showing Dropping Anvil Something (Ignore)
This commit is contained in:
@@ -7,35 +7,35 @@ import com.massivecraft.factions.zcore.util.TL;
|
||||
public class CmdStrikes extends FCommand {
|
||||
|
||||
|
||||
public CmdStrikesGive cmdStrikesGive = new CmdStrikesGive();
|
||||
public CmdStrikesInfo cmdStrikesInfo = new CmdStrikesInfo();
|
||||
public CmdStrikesSet cmdStrikesSet = new CmdStrikesSet();
|
||||
public CmdStrikesTake cmdStrikesTake = new CmdStrikesTake();
|
||||
public CmdStrikesGive cmdStrikesGive = new CmdStrikesGive();
|
||||
public CmdStrikesInfo cmdStrikesInfo = new CmdStrikesInfo();
|
||||
public CmdStrikesSet cmdStrikesSet = new CmdStrikesSet();
|
||||
public CmdStrikesTake cmdStrikesTake = new CmdStrikesTake();
|
||||
|
||||
public CmdStrikes() {
|
||||
super();
|
||||
public CmdStrikes() {
|
||||
super();
|
||||
|
||||
this.aliases.add("strikes");
|
||||
this.aliases.add("strikes");
|
||||
|
||||
this.addSubCommand(cmdStrikesGive);
|
||||
this.addSubCommand(cmdStrikesInfo);
|
||||
this.addSubCommand(cmdStrikesSet);
|
||||
this.addSubCommand(cmdStrikesTake);
|
||||
this.addSubCommand(cmdStrikesGive);
|
||||
this.addSubCommand(cmdStrikesInfo);
|
||||
this.addSubCommand(cmdStrikesSet);
|
||||
this.addSubCommand(cmdStrikesTake);
|
||||
|
||||
this.requirements = new CommandRequirements.Builder(Permission.SETSTRIKES)
|
||||
.playerOnly()
|
||||
.build();
|
||||
}
|
||||
this.requirements = new CommandRequirements.Builder(Permission.SETSTRIKES)
|
||||
.playerOnly()
|
||||
.build();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void perform(CommandContext context) {
|
||||
context.commandChain.add(this);
|
||||
FactionsPlugin.getInstance().cmdAutoHelp.execute(context);
|
||||
}
|
||||
@Override
|
||||
public void perform(CommandContext context) {
|
||||
context.commandChain.add(this);
|
||||
FactionsPlugin.getInstance().cmdAutoHelp.execute(context);
|
||||
}
|
||||
|
||||
@Override
|
||||
public TL getUsageTranslation() {
|
||||
return TL.COMMAND_STRIKES_DESCRIPTION;
|
||||
}
|
||||
@Override
|
||||
public TL getUsageTranslation() {
|
||||
return TL.COMMAND_STRIKES_DESCRIPTION;
|
||||
}
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user