]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/ctables.h
Introduce ModeProcessFlags, can be passed to ModeParser::Process() to indicate local...
[user/henk/code/inspircd.git] / include / ctables.h
index 2ccca0f7bf5b7b0479c89e6a995d9e152d4ecdb0..6ead8081f96a3cf65a8fb0fac7b49468c7baf4d3 100644 (file)
@@ -119,10 +119,6 @@ class CoreExport Command : public ServiceProvider
         */
        unsigned long use_count;
 
-       /** used by /stats m
-        */
-       unsigned long total_bytes;
-
        /** True if the command is disabled to non-opers
         */
        bool disabled;
@@ -163,7 +159,7 @@ class CoreExport Command : public ServiceProvider
         */
        Command(Module* me, const std::string &cmd, int minpara = 0, int maxpara = 0) :
                ServiceProvider(me, cmd, SERVICE_COMMAND), flags_needed(0), min_params(minpara), max_params(maxpara),
-               use_count(0), total_bytes(0), disabled(false), works_before_reg(false), allow_empty_last_param(true),
+               use_count(0), disabled(false), works_before_reg(false), allow_empty_last_param(true),
                Penalty(1)
        {
        }