1
0
mirror of https://github.com/anope/anope.git synced 2026-07-06 14:53:13 +02:00

Allow 0 ttb in flood kicker

This commit is contained in:
Adam
2014-11-15 08:50:37 -05:00
parent c9008cdafa
commit 8557a4161a
+1 -1
View File
@@ -514,7 +514,7 @@ class CommandBSKickFlood : public CommandBSKickBase
try
{
i = convertTo<int16_t>(ttb);
if (i < 1)
if (i < 0)
throw ConvertException();
}
catch (const ConvertException &)