diff options
author | Adam <Adam@anope.org> | 2011-08-29 16:03:33 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-29 16:03:33 -0400 |
commit | 5cf3ddb7b196173fbac848322bf0ed8e4dfd524b (patch) | |
tree | db07e34ac56822826169cc9d8208a7e2aca34773 /include/opertype.h | |
parent | 1e1a41f0e7bd81bd3eee67281cad2bd284d97b86 (diff) |
Made config rehashing not wipe opers configured with opersev/oper
Diffstat (limited to 'include/opertype.h')
-rw-r--r-- | include/opertype.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/opertype.h b/include/opertype.h index f76fc07b1..ca2d81ac5 100644 --- a/include/opertype.h +++ b/include/opertype.h @@ -18,9 +18,10 @@ struct CoreExport Oper Anope::string password; Anope::string certfp; OperType *ot; + bool config; Oper(const Anope::string &n, const Anope::string &p, const Anope::string &c, OperType *o) : - name(n), password(p), certfp(c), ot(o) { } + name(n), password(p), certfp(c), ot(o), config(false) { } /** Find an oper block by name * @param name The name |