diff options
author | Daniel De Graaf <danieldg@inspircd.org> | 2010-05-12 19:47:24 -0500 |
---|---|---|
committer | Daniel De Graaf <danieldg@inspircd.org> | 2010-05-12 19:47:24 -0500 |
commit | 524e2ce8b1a949ad9f844b8693b03070d6c27583 (patch) | |
tree | 7dd6494b489831d5d359401be11f489818dbbd7e /src/users.cpp | |
parent | 78e80c2b15e14210def823252f70400bba02ac41 (diff) |
Add some missing <connect> updates from rehash, noticed by mixx941
Diffstat (limited to 'src/users.cpp')
-rw-r--r-- | src/users.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/users.cpp b/src/users.cpp index 6f2880659..373e18f46 100644 --- a/src/users.cpp +++ b/src/users.cpp @@ -1714,6 +1714,9 @@ ConnectClass::ConnectClass(ConfigTag* tag, char t, const std::string& mask, cons void ConnectClass::Update(const ConnectClass* src) { + config = src->config; + type = src->type; + fakelag = src->fakelag; name = src->name; registration_timeout = src->registration_timeout; host = src->host; @@ -1722,7 +1725,9 @@ void ConnectClass::Update(const ConnectClass* src) hardsendqmax = src->hardsendqmax; recvqmax = src->recvqmax; penaltythreshold = src->penaltythreshold; + commandrate = src->commandrate; maxlocal = src->maxlocal; maxglobal = src->maxglobal; + maxchans = src->maxchans; limit = src->limit; } |