diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-31 17:46:57 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2007-10-31 17:46:57 +0000 |
commit | 3b1e5822f6f1b64a91f91be1436e95db302c57c0 (patch) | |
tree | a53f76f8e91cbd212c9b9f5e3493530a99faf493 /src/modules/m_antibear.cpp | |
parent | 568f90949aaa882fd8de88669234894e5235b7c6 (diff) |
More fixes
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8432 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_antibear.cpp')
-rw-r--r-- | src/modules/m_antibear.cpp | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/src/modules/m_antibear.cpp b/src/modules/m_antibear.cpp index f18aa6883..0c65adab3 100644 --- a/src/modules/m_antibear.cpp +++ b/src/modules/m_antibear.cpp @@ -46,10 +46,17 @@ class ModuleAntiBear : public Module { if (!strncmp(parameters[1], "\1TIME Mon May 01 18:54:20 2006", 30)) { - ServerInstance->XLines->AddZLine(86400, ServerInstance->Config->ServerName, "Unless you're stuck in a time warp, you appear to be a bear bot!", user->GetIPString()); - // XXX move events into the damn XLineManager stuff - FOREACH_MOD(I_OnAddGLine,OnAddZLine(86400, NULL, "Unless you're stuck in a time warp, you appear to be a bear bot!", user->MakeHostIP())); - ServerInstance->XLines->ApplyLines(); + ZLine* zl = new ZLine(ServerInstance, ServerInstance->Time(), 86400, ServerInstance->Config->ServerName, + "Unless you're stuck in a time warp, you appear to be a bear bot!", user->GetIPString()); + if (ServerInstance->XLines->AddLine(zl)) + { + // XXX move events into the xline manager + FOREACH_MOD(I_OnAddGLine,OnAddZLine(86400, NULL, "Unless you're stuck in a time warp, you appear to be a bear bot!", user->MakeHostIP())); + ServerInstance->XLines->ApplyLines(); + } + else + delete zl; + return 1; } |