diff options
author | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-08 17:02:23 +0000 |
---|---|---|
committer | w00t <w00t@e03df62e-2008-0410-955e-edbf42e46eb7> | 2008-05-08 17:02:23 +0000 |
commit | ff44d048a26a8a06712cbe4ac6fd661249c0cf1d (patch) | |
tree | 25c2b0ee802797da89f6f2191b45a7d938a1c4e1 /src/modules | |
parent | c3e52465901f11226616a2a93393c3d07295b45d (diff) |
Clarify a comment that confused me
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@9665 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules')
-rw-r--r-- | src/modules/m_delayjoin.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/modules/m_delayjoin.cpp b/src/modules/m_delayjoin.cpp index abdee355a..028717985 100644 --- a/src/modules/m_delayjoin.cpp +++ b/src/modules/m_delayjoin.cpp @@ -36,9 +36,9 @@ class DelayJoinMode : public ModeHandler { if (channel->IsModeSet('D')) { - /* Make all delayed join users visible, or if an op removes +D - * while users exist that havent spoken, they remain permenantly - * invisible on this channel! + /* + * Make all users visible, as +D is being removed. If we don't do this, + * they remain permanently invisible on this channel! */ CUList* names = channel->GetUsers(); for (CUListIter n = names->begin(); n != names->end(); ++n) |