Merge pull request #60 from eXeC64/spy

Added chat spy feature for admins
This commit is contained in:
Brett Flannigan
2012-01-14 22:58:39 -08:00
6 changed files with 65 additions and 3 deletions

View File

@@ -102,6 +102,11 @@ public class FPlayer extends PlayerEntity implements EconomyParticipator
return chatMode;
}
// FIELD: chatSpy
private transient boolean spyingChat = false;
public void setSpyingChat(boolean chatSpying) { this.spyingChat = chatSpying; }
public boolean isSpyingChat() { return spyingChat; }
// FIELD: account
public MethodAccount getAccount()
{