diff options
author | Adam <Adam@anope.org> | 2010-12-23 19:01:49 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2010-12-23 19:01:49 -0500 |
commit | f8a0a645b0719750061d79cc7aa95aebbadc4c81 (patch) | |
tree | e5829b7aa2cab63972cc2c290ec807cff0940b0c /src/modules/hs_request.c | |
parent | 12b0ff0593cc5f2c0f61ca575f9e0af8b0084994 (diff) |
Remove vhost requests from nicks that expire
Diffstat (limited to 'src/modules/hs_request.c')
-rw-r--r-- | src/modules/hs_request.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/modules/hs_request.c b/src/modules/hs_request.c index 72d1c46f6..fedf88735 100644 --- a/src/modules/hs_request.c +++ b/src/modules/hs_request.c @@ -115,6 +115,9 @@ int AnopeInit(int argc, char **argv) hook = createEventHook(EVENT_NICK_DROPPED, hsreqevt_nick_dropped); moduleAddEventHook(hook); + hook = createEventHook(EVENT_NICK_EXPIRE, hsreqevt_nick_dropped); + moduleAddEventHook(hook); + hook = createEventHook(EVENT_DB_SAVING, hsreqevt_db_saving); moduleAddEventHook(hook); |