diff options
| author | 2006-12-13 20:00:33 +0000 | |
|---|---|---|
| committer | 2006-12-13 20:00:33 +0000 | |
| commit | f240285155d115ee3a0fd437944f2bec05a0c14c (patch) | |
| tree | c5279b786faf023765a2b692b89bdc63b0716225 /src/inspircd.cpp | |
| parent | Properly fix 'changed nickname from one thats on your notify to one thats not... (diff) | |
| download | inspircd++-f240285155d115ee3a0fd437944f2bec05a0c14c.tar.gz inspircd++-f240285155d115ee3a0fd437944f2bec05a0c14c.tar.bz2 inspircd++-f240285155d115ee3a0fd437944f2bec05a0c14c.zip | |
Improve the way 005 ISUPPORT is sent to users when they connect, cache it in a much more sane format which is much simpler to spool to them
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5978 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
| -rw-r--r-- | src/inspircd.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 8c297af07..aef7b09e6 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -490,6 +490,7 @@ void InspIRCd::BuildISupport() v << MAXAWAY << " CHANMODES=" << this->Modes->ChanModes() << " FNC NETWORK=" << Config->Network << " MAXPARA=32"; Config->data005 = v.str(); FOREACH_MOD_I(this,I_On005Numeric,On005Numeric(Config->data005)); + Config->Update005(); } bool InspIRCd::UnloadModule(const char* filename) |
