diff options
| author | 2006-08-09 18:55:52 +0000 | |
|---|---|---|
| committer | 2006-08-09 18:55:52 +0000 | |
| commit | 9bc04a302572eb311a147a32ff1d36f1d91f2d7a (patch) | |
| tree | 847f867baeefde36c133387b578aa937c37b4360 /src/modules.cpp | |
| parent | Move tons more stuff into class InspIRCd (diff) | |
userrec and chanrec now have their own independent pointer back to their 'creator' InspIRCd* object, extern now longer required in channels.cpp or users.cpp
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4820 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 46b6a16d1..22083fa66 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -538,7 +538,7 @@ bool InspIRCd::PseudoToUser(userrec* alive, userrec* zombie, const std::string & std::string oldnick = alive->nick; std::string oldhost = alive->host; std::string oldident = alive->ident; - userrec::QuitUser(alive,message.c_str()); + userrec::QuitUser(this,alive,message.c_str()); if (find(local_users.begin(),local_users.end(),alive) != local_users.end()) { local_users.erase(find(local_users.begin(),local_users.end(),alive)); |
