35 lines
687 B
Java
35 lines
687 B
Java
|
package com.bukkit.mcteam.factions.commands;
|
||
|
|
||
|
import java.util.ArrayList;
|
||
|
|
||
|
public class FCommandChat extends FBaseCommand {
|
||
|
|
||
|
public FCommandChat() {
|
||
|
requiredParameters = new ArrayList<String>();
|
||
|
optionalParameters = new ArrayList<String>();
|
||
|
|
||
|
permissions = "";
|
||
|
|
||
|
senderMustBePlayer = true;
|
||
|
|
||
|
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.");
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|