diff options
author | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-10-25 04:12:54 +0000 |
---|---|---|
committer | Adam- <Adam-@5417fbe8-f217-4b02-8779-1006273d7864> | 2009-10-25 04:12:54 +0000 |
commit | 6e3aa36876fe85caac9919420ece61d981f046a4 (patch) | |
tree | 1af4ea7e8625fb15ec7026d6b777c30652087e45 /include/modules.h | |
parent | 7a429517af09a2240f938a5570f83e4c6b9f9f9f (diff) |
Fixed passing invalid channel pointer to OnPartChannel if the last user in a channel parted, now we use NULL and just give it the channel name
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2586 5417fbe8-f217-4b02-8779-1006273d7864
Diffstat (limited to 'include/modules.h')
-rw-r--r-- | include/modules.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/modules.h b/include/modules.h index 7a122804d..f7354f4e2 100644 --- a/include/modules.h +++ b/include/modules.h @@ -640,9 +640,11 @@ class CoreExport Module /** Called when a user parts a channel * @param u The user - * @param c The channel + * @param c The channel, may be NULL if the channel no longer exists + * @param channel The channel name + * @param msg The part reason */ - virtual void OnPartChannel(User *u, Channel *c, const std::string &msg) { } + virtual void OnPartChannel(User *u, Channel *c, const std::string &channel, const std::string &msg) { } /** Called before a user joins a channel * @param u The user |