diff options
author | Attila Molnar <attilamolnar@hush.com> | 2013-05-18 12:03:55 -0700 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2013-05-18 12:03:55 -0700 |
commit | 8f27fefa75e2952e7ab8757eb9fe4af4586817f0 (patch) | |
tree | 752def83ea80788d6a04fb8cc8358146915e7c4a /src/modules/m_conn_join.cpp | |
parent | 143b2b081821f027eaa72be522ea691447980850 (diff) | |
parent | 5c9427cde0a949a17a476311db0a2a275345337b (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); } } |