From 8557a4161acf64c0e0747a20dd29bc3a3ed1abb4 Mon Sep 17 00:00:00 2001 From: Adam Date: Sat, 15 Nov 2014 08:50:37 -0500 Subject: [PATCH] Allow 0 ttb in flood kicker --- modules/commands/bs_kick.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/commands/bs_kick.cpp b/modules/commands/bs_kick.cpp index 09383f54d..e1667d510 100644 --- a/modules/commands/bs_kick.cpp +++ b/modules/commands/bs_kick.cpp @@ -514,7 +514,7 @@ class CommandBSKickFlood : public CommandBSKickBase try { i = convertTo(ttb); - if (i < 1) + if (i < 0) throw ConvertException(); } catch (const ConvertException &)