2011-03-22 15:45:41 +01:00
|
|
|
package com.bukkit.mcteam.factions.commands;
|
|
|
|
|
|
|
|
import com.bukkit.mcteam.factions.Conf;
|
|
|
|
import com.bukkit.mcteam.factions.FPlayer;
|
|
|
|
import com.bukkit.mcteam.factions.struct.Role;
|
|
|
|
import com.bukkit.mcteam.factions.util.TextUtil;
|
|
|
|
|
|
|
|
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";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void perform() {
|
|
|
|
if ( ! assertHasFaction()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
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());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|