diff options
| author | 2013-05-18 12:03:55 -0700 | |
|---|---|---|
| committer | 2013-05-18 12:03:55 -0700 | |
| commit | 8f27fefa75e2952e7ab8757eb9fe4af4586817f0 (patch) | |
| tree | 752def83ea80788d6a04fb8cc8358146915e7c4a /src/modules/m_conn_join.cpp | |
| parent | Merge pull request #541 from SaberUK/master+chanlog (diff) | |
| parent | Remove the size argument from IsChannel and IsNick. (diff) | |
Merge pull request #543 from SaberUK/master+sizeparam-removal
Remove the size argument from IsChannel and IsNick.
Diffstat (limited to 'src/modules/m_conn_join.cpp')
| -rw-r--r-- | src/modules/m_conn_join.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_conn_join.cpp b/src/modules/m_conn_join.cpp index c49afbdfc..bfac8147d 100644 --- a/src/modules/m_conn_join.cpp +++ b/src/modules/m_conn_join.cpp @@ -57,7 +57,7 @@ class ModuleConnJoin : public Module while (chans.GetToken(chan)) { - if (ServerInstance->IsChannel(chan, ServerInstance->Config->Limits.ChanMax)) + if (ServerInstance->IsChannel(chan)) Channel::JoinUser(localuser, chan); } } |
