Change chat flood protection from 5 messages per 15 seconds to 3 messages per 10 seconds.

This commit is contained in:
Andy Janata 2013-02-03 10:58:26 -08:00
parent 869750b6c3
commit e436a63cf1
1 changed files with 2 additions and 2 deletions

View File

@ -42,8 +42,8 @@ import java.util.Set;
*/
public class Constants {
public static final int CHAT_FLOOD_MESSAGE_COUNT = 5;
public static final int CHAT_FLOOD_TIME = 15 * 1000;
public static final int CHAT_FLOOD_MESSAGE_COUNT = 3;
public static final int CHAT_FLOOD_TIME = 10 * 1000;
public static final int CHAT_MAX_LENGTH = 200;
@SuppressWarnings("serial")