mirror of
https://github.com/inspircd/inspircd.git
synced 2025-03-10 02:59:01 -04:00
CONSTIFY\!
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8920 e03df62e-2008-0410-955e-edbf42e46eb7
This commit is contained in:
parent
21a5b7c3cc
commit
9d2422582c
@ -96,7 +96,7 @@ class CoreExport Command : public Extensible
|
||||
* be allowed before the user is 'registered' (has sent USER,
|
||||
* NICK, optionally PASS, and been resolved).
|
||||
*/
|
||||
Command(InspIRCd* Instance, const std::string &cmd, char *flags, int minpara, int before_reg = false, int penalty = 1) : ServerInstance(Instance), command(cmd), flags_needed(flags ? *flags : 0), min_params(minpara), disabled(false), works_before_reg(before_reg), Penalty(penalty)
|
||||
Command(InspIRCd* Instance, const std::string &cmd, const char *flags, int minpara, int before_reg = false, int penalty = 1) : ServerInstance(Instance), command(cmd), flags_needed(flags ? *flags : 0), min_params(minpara), disabled(false), works_before_reg(before_reg), Penalty(penalty)
|
||||
{
|
||||
use_count = 0;
|
||||
total_bytes = 0;
|
||||
|
Loading…
x
Reference in New Issue
Block a user