diff options
Diffstat (limited to 'modules/chanserv/ban.cpp')
-rw-r--r-- | modules/chanserv/ban.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/chanserv/ban.cpp b/modules/chanserv/ban.cpp index 196f726b7..cd6b70b1f 100644 --- a/modules/chanserv/ban.cpp +++ b/modules/chanserv/ban.cpp @@ -79,7 +79,7 @@ class CommandCSBan : public Command if (params[1][0] == '+') { ban_time = Anope::DoTime(params[1]); - if (ban_time == -1) + if (ban_time < 0) { source.Reply(_("Invalid expiry time \002{0}\002."), params[1]); return; |