Saber-Factions/src/org/mcteam/factions/commands/FCommandChat.java

29 lines
543 B
Java
Raw Normal View History

2011-04-08 15:51:07 +02:00
package org.mcteam.factions.commands;
public class FCommandChat extends FBaseCommand {
public FCommandChat() {
aliases.add("chat");
aliases.add("c");
helpDescription = "Switch faction only chat on and off";
}
public void perform() {
if ( ! assertHasFaction()) {
return;
}
if ( ! me.isFactionChatting()) {
// Turn on
me.setFactionChatting(true);
sendMessage("Faction-only chat ENABLED.");
} else {
// Turn off
me.setFactionChatting(false);
sendMessage("Faction-only chat DISABLED.");
}
}
}