summaryrefslogtreecommitdiff
path: root/src/nickserv.c
diff options
context:
space:
mode:
authorrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-06-06 23:33:23 +0000
committerrburchell <rburchell@5417fbe8-f217-4b02-8779-1006273d7864>2009-06-06 23:33:23 +0000
commit9ff6ed2430ed87014846b39456b31b7aba231e48 (patch)
tree0f61726fefb323c39696510ac38e5bc30d44fa2b /src/nickserv.c
parent2eae73808355d8a26886bfcf42f03db02e53f1e6 (diff)
New events stuff, patch totally by Adam (aka Awesome).
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2313 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'src/nickserv.c')
-rw-r--r--src/nickserv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nickserv.c b/src/nickserv.c
index 366f9ee43..21c3205fe 100644
--- a/src/nickserv.c
+++ b/src/nickserv.c
@@ -729,7 +729,7 @@ void expire_nicks()
(na->nc->email ? na->nc->email : "none"));
tmpnick = sstrdup(na->nick);
delnick(na);
- send_event(EVENT_NICK_EXPIRE, 1, tmpnick);
+ FOREACH_MOD(I_OnNickExpire, OnNickExpire(tmpnick));
delete [] tmpnick;
}
}