ddf054330a
Boards can be toggled with /f sb. Toggles are persistent in a yml file. Also fix some small spelling and format things that were really bugging me.
35 lines
986 B
Java
35 lines
986 B
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.P;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
|
|
public class CmdChatSpy extends FCommand {
|
|
|
|
public CmdChatSpy() {
|
|
super();
|
|
this.aliases.add("chatspy");
|
|
|
|
this.optionalArgs.put("on/off", "flip");
|
|
|
|
this.permission = Permission.CHATSPY.node;
|
|
this.disableOnLock = false;
|
|
|
|
senderMustBePlayer = true;
|
|
senderMustBeMember = false;
|
|
senderMustBeModerator = false;
|
|
senderMustBeAdmin = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform() {
|
|
fme.setSpyingChat(this.argAsBool(0, !fme.isSpyingChat()));
|
|
|
|
if (fme.isSpyingChat()) {
|
|
fme.msg("<i>You have enabled chat spying mode.");
|
|
P.p.log(fme.getName() + " has ENABLED chat spying mode.");
|
|
} else {
|
|
fme.msg("<i>You have disabled chat spying mode.");
|
|
P.p.log(fme.getName() + " DISABLED chat spying mode.");
|
|
}
|
|
}
|
|
} |