summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-21 12:52:42 +0000
committerbrain <brain@e03df62e-2008-0410-955e-edbf42e46eb7>2007-10-21 12:52:42 +0000
commitb80d1be349a5a5dbb16cde08d59543a553f9a382 (patch)
tree0b3f6cecd7540aa50a95b3fcf60cde1a1c6a3d21 /include
parent804fee1b54762bc41d5ff1559b52183b5fd35cf8 (diff)
Penalty should be 'const int'. Note, you can set a const in the constructors init-list, see line 109
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@8246 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'include')
-rw-r--r--include/ctables.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/ctables.h b/include/ctables.h
index 33366f87a..27db32d2c 100644
--- a/include/ctables.h
+++ b/include/ctables.h
@@ -94,7 +94,7 @@ class CoreExport Command : public Extensible
/** How many seconds worth of penalty does this command have?
*/
- int Penalty;
+ const int Penalty;
/** Create a new command.
* @param Instance Pointer to creator class
@@ -106,7 +106,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) : ServerInstance(Instance), command(cmd), flags_needed(flags), min_params(minpara), disabled(false), works_before_reg(before_reg)
+ Command(InspIRCd* Instance, const std::string &cmd, char flags, int minpara, int before_reg = false) : ServerInstance(Instance), command(cmd), flags_needed(flags), min_params(minpara), disabled(false), works_before_reg(before_reg), Penalty(1)
{
use_count = 0;
total_bytes = 0;