Factions/src/com/massivecraft/factions/cmd/CmdFactionsDescription.java

35 lines
1.1 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2013-04-09 13:15:25 +02:00
import com.massivecraft.factions.ConfServer;
import com.massivecraft.factions.Perm;
import com.massivecraft.factions.Rel;
import com.massivecraft.factions.cmd.req.ReqRoleIsAtLeast;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
import com.massivecraft.mcore.mixin.Mixin;
2013-04-10 13:12:22 +02:00
public class CmdFactionsDescription extends FCommand
{
2013-04-10 13:12:22 +02:00
public CmdFactionsDescription()
{
2013-04-16 10:11:59 +02:00
this.addAliases("desc");
this.addRequiredArg("desc");
this.setErrorOnToManyArgs(false);
2013-04-16 10:11:59 +02:00
this.addRequirements(ReqHasPerm.get(Perm.DESCRIPTION.node));
this.addRequirements(ReqRoleIsAtLeast.get(Rel.OFFICER));
}
@Override
public void perform()
{
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
2013-04-09 13:15:25 +02:00
if ( ! payForCommand(ConfServer.econCostDesc, "to change faction description", "for changing faction description")) return;
myFaction.setDescription(this.argConcatFrom(1));
myFaction.msg("<i>%s <i>set your faction description to:\n%s", Mixin.getDisplayName(sender), myFaction.getDescription());
}
}