Change chat flood protection from 5 messages per 15 seconds to 3 messages per 10 seconds.
This commit is contained in:
parent
869750b6c3
commit
e436a63cf1
|
@ -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")
|
||||
|
|
Loading…
Reference in New Issue