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_ojoin.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_ojoin.cpp')
-rw-r--r-- | src/modules/m_ojoin.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_ojoin.cpp b/src/modules/m_ojoin.cpp index c99e24b0f..35d90b23e 100644 --- a/src/modules/m_ojoin.cpp +++ b/src/modules/m_ojoin.cpp @@ -60,7 +60,7 @@ class CommandOjoin : public SplitCommand CmdResult HandleLocal(const std::vector<std::string>& parameters, LocalUser* user) { // Make sure the channel name is allowable. - if (!ServerInstance->IsChannel(parameters[0], ServerInstance->Config->Limits.ChanMax)) + if (!ServerInstance->IsChannel(parameters[0])) { user->WriteNotice("*** Invalid characters in channel name or name too long"); return CMD_FAILURE; |