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

43 lines
1.2 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.Perm;
import com.massivecraft.factions.Rel;
import com.massivecraft.factions.cmd.req.ReqRoleIsAtLeast;
import com.massivecraft.factions.event.FactionsEventDescriptionChange;
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()
{
// Args
String newDescription = this.argConcatFrom(1);
// Event
FactionsEventDescriptionChange event = new FactionsEventDescriptionChange(sender, usenderFaction, newDescription);
event.run();
if (event.isCancelled()) return;
newDescription = event.getNewDescription();
// Apply
usenderFaction.setDescription(this.argConcatFrom(1));
// Inform
usenderFaction.msg("<i>%s <i>set your faction description to:\n%s", Mixin.getDisplayName(sender), usenderFaction.getDescription());
}
}