2019-09-14 21:13:01 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
|
|
|
import com.massivecraft.factions.Faction;
|
|
|
|
import com.massivecraft.factions.struct.Permission;
|
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
|
|
|
|
|
|
public class CmdStrikesGive extends FCommand {
|
|
|
|
|
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
public CmdStrikesGive() {
|
|
|
|
super();
|
|
|
|
this.aliases.add("give");
|
|
|
|
this.requiredArgs.add(0, "faction");
|
|
|
|
|
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.SETSTRIKES)
|
|
|
|
.playerOnly()
|
|
|
|
.build();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform(CommandContext context) {
|
|
|
|
Faction target = context.argAsFaction(0);
|
|
|
|
if (target == null || target.isSystemFaction()) {
|
|
|
|
context.msg(TL.COMMAND_STRIKES_TARGET_INVALID, context.argAsString(0));
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
target.setStrikes(target.getStrikes() + 1);
|
|
|
|
context.msg(TL.COMMAND_STRIKES_CHANGED, target.getTag(), target.getStrikes());
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_STRIKESGIVE_DESCRIPTION;
|
|
|
|
}
|
2019-09-14 21:13:01 +02:00
|
|
|
|
|
|
|
}
|