summaryrefslogtreecommitdiffstats
path: root/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/checks/chat/ChatData.java
blob: b05cb257961c2a8bb3ff18a09e320df142082496 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.earth2me.essentials.anticheat.checks.chat;

import com.earth2me.essentials.anticheat.DataItem;


/**
 * Player specific data for the chat checks
 *
 */
public class ChatData implements DataItem
{
	// Keep track of the violation levels for the two checks
	public int spamVL;
	public int colorVL;
	// Count messages and commands
	public int messageCount = 0;
	public int commandCount = 0;
	// Remember when the last check time period started
	public long spamLastTime = 0;
	// Remember the last chat message or command for logging purposes
	public String message = "";
}