2011-07-18 22:06:02 +02:00
|
|
|
package com.massivecraft.factions.commands;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.Conf;
|
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
|
|
import com.massivecraft.factions.struct.Role;
|
|
|
|
import com.massivecraft.factions.util.TextUtil;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
public class FCommandDescription extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandDescription() {
|
2011-03-22 18:48:09 +01:00
|
|
|
aliases.add("desc");
|
|
|
|
|
|
|
|
requiredParameters.add("desc");
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
helpDescription = "Change the faction description";
|
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-03-22 15:45:41 +01:00
|
|
|
public void perform() {
|
|
|
|
if ( ! assertHasFaction()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-08 17:16:43 +02:00
|
|
|
if( isLocked() ) {
|
|
|
|
sendLockMessage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
if ( ! assertMinRole(Role.MODERATOR)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
me.getFaction().setDescription(TextUtil.implode(parameters));
|
2011-03-22 22:31:04 +01:00
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
// Broadcast the description to everyone
|
|
|
|
for (FPlayer fplayer : FPlayer.getAllOnline()) {
|
|
|
|
fplayer.sendMessage("The faction "+fplayer.getRelationColor(me)+me.getFaction().getTag()+Conf.colorSystem+" changed their description to:");
|
|
|
|
fplayer.sendMessage(me.getFaction().getDescription());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|