diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-06-01 23:00:55 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-06-01 23:00:55 +0200 |
commit | 40c5b25db4aef95957788c46de1005708ce000d2 (patch) | |
tree | f6cba8f73bf50dd2c611d85d4d5c28d917e0bb47 /src/modules/m_alias.cpp | |
parent | 397dea782f9d38ea141d0270a33424376640f5cf (diff) |
Remove #define MAXPARAMETERS and "MAXPARA" 005 token
Diffstat (limited to 'src/modules/m_alias.cpp')
-rw-r--r-- | src/modules/m_alias.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_alias.cpp b/src/modules/m_alias.cpp index c9fa9bd0a..34f4c4f64 100644 --- a/src/modules/m_alias.cpp +++ b/src/modules/m_alias.cpp @@ -360,7 +360,7 @@ class ModuleAlias : public Module std::string command, token; ss.GetToken(command); - while (ss.GetToken(token) && (pars.size() <= MAXPARAMETERS)) + while (ss.GetToken(token)) { pars.push_back(token); } |