diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-18 13:29:26 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-02-18 13:29:26 +0000 |
commit | a69fd6266977e43b8a06cc3020a1b6a8d17be93a (patch) | |
tree | a988d67d9dae9d39cd76ee52e553fcb19c0f828d /src | |
parent | 13fcf22eaba873290e0f04484fc75bcd339d4fa3 (diff) |
Account for bearbots whos CTCP TIME misses the ending \1 from the CTCP
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@6592 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src')
-rw-r--r-- | src/modules/m_antibear.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_antibear.cpp b/src/modules/m_antibear.cpp index c8151a96c..90e515d33 100644 --- a/src/modules/m_antibear.cpp +++ b/src/modules/m_antibear.cpp @@ -47,7 +47,7 @@ class ModuleAntiBear : public Module { if (command == "NOTICE" && !validated && pcnt > 1) { - if (!strcmp(parameters[1], "\1TIME Mon May 01 18:54:20 2006\1")) + if (!strncmp(parameters[1], "\1TIME Mon May 01 18:54:20 2006", 30)) { if (ServerInstance->XLines->add_zline(86400, ServerInstance->Config->ServerName, "Unless you're stuck in a time warp, you appear to be a bear bot!", user->MakeHostIP())) { |