From 1ff9f5648b2d85dfa14095818adcfe7059aaff3f Mon Sep 17 00:00:00 2001 From: Calvin Montgomery Date: Mon, 27 Apr 2015 13:09:32 -0500 Subject: [PATCH] Update MIN_ANTIFLOOD to be the same as the limits for channel settings --- lib/channel/chat.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/channel/chat.js b/lib/channel/chat.js index 4b9109d5..a6e71b7b 100644 --- a/lib/channel/chat.js +++ b/lib/channel/chat.js @@ -24,7 +24,7 @@ const TYPE_PM = { // Limit to 10 messages/sec const MIN_ANTIFLOOD = { - burst: 10, + burst: 20, sustained: 10 };