diff options
author | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-11 01:24:59 +0000 |
---|---|---|
committer | brain <brain@e03df62e-2008-0410-955e-edbf42e46eb7> | 2005-05-11 01:24:59 +0000 |
commit | 275d48551c78d4c8253ef6b8c40dda09baec56d6 (patch) | |
tree | 087382f0ea1dc78fe339556cdfff9732a0d38dd5 /src/inspircd.cpp | |
parent | 9d449257ea2c404eaedd252602588b2812e42045 (diff) |
Fixed weird bug where on mass join/part flood, the channel would be
purged before it was actually empty due to its counters being screwed up
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@1360 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/inspircd.cpp')
-rw-r--r-- | src/inspircd.cpp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/inspircd.cpp b/src/inspircd.cpp index 21e3bffd9..8da1f7bf5 100644 --- a/src/inspircd.cpp +++ b/src/inspircd.cpp @@ -1384,7 +1384,6 @@ void purge_empty_chans(userrec* u) { if (u->chans[f].channel) { - u->chans[f].channel->DecUserCounter(); u->chans[f].channel->DelUser((char*)u); } } @@ -1897,7 +1896,6 @@ chanrec* del_channel(userrec *user, const char* cname, const char* reason, bool } } - Ptr->DecUserCounter(); Ptr->DelUser((char*)user); /* if there are no users left on the channel */ @@ -1982,7 +1980,6 @@ void kick_channel(userrec *src,userrec *user, chanrec *Ptr, char* reason) } } - Ptr->DecUserCounter(); Ptr->DelUser((char*)user); /* if there are no users left on the channel */ |