summaryrefslogtreecommitdiff
path: root/include/u_listmode.h
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-18 17:03:45 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2008-02-18 17:03:45 +0000
commit415a2576ef2235f773a5ccdc1b3ebf1e6d3033a6 (patch)
tree102de549fba36123367ad4aebc7fef8577e0e021 /include/u_listmode.h
parent32a26fa539242d009ffab01e09cafdaba9270dac (diff)
Fix this first, as this actually has use of the new parameter same as cmode_b.cpp does
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8965 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include/u_listmode.h')
-rw-r--r--include/u_listmode.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/u_listmode.h b/include/u_listmode.h
index 31f07148f..301f5a921 100644
--- a/include/u_listmode.h
+++ b/include/u_listmode.h
@@ -241,7 +241,7 @@ class ListModeBase : public ModeHandler
/** Handle the list mode.
* See mode.h
*/
- virtual ModeAction OnModeChange(User* source, User*, Channel* channel, std::string &parameter, bool adding)
+ virtual ModeAction OnModeChange(User* source, User*, Channel* channel, std::string &parameter, bool adding, bool servermode)
{
// Try and grab the list
modelist* el;
@@ -299,7 +299,7 @@ class ListModeBase : public ModeHandler
// And now add the mask onto the list...
ListItem e;
e.mask = assign(parameter);
- e.nick = source->nick;
+ e.nick = servermode ? ServerInstance->Config->ServerName : source->nick;
e.time = stringtime();
el->push_back(e);