diff options
author | Adam <Adam@anope.org> | 2013-07-08 20:35:04 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-07-08 20:35:04 -0400 |
commit | eabb9c0c11c3fdd51c57410f4b104bf08ca57d46 (patch) | |
tree | 0f9855c9ce3470c18b569efff2a5cf5ba02f4fa9 /modules/commands/cs_log.cpp | |
parent | b103d16eb1a9182715b808d913f964abd9f783be (diff) |
Fix deleting badwords/modes/logs etc
Diffstat (limited to 'modules/commands/cs_log.cpp')
-rw-r--r-- | modules/commands/cs_log.cpp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/modules/commands/cs_log.cpp b/modules/commands/cs_log.cpp index 96d959e2c..d93dcf8a2 100644 --- a/modules/commands/cs_log.cpp +++ b/modules/commands/cs_log.cpp @@ -277,8 +277,8 @@ class CSLog : public Module { ServiceReference<MemoServService> MSService; CommandCSLog commandcslog; - ExtensibleItem<LogSettingsImpl> logsettings; Serialize::Type logsetting_type; + ExtensibleItem<LogSettingsImpl> logsettings; struct LogDefault { @@ -289,8 +289,9 @@ class CSLog : public Module public: CSLog(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR), - MSService("MemoServService", "MemoServ"), commandcslog(this), logsettings(this, "logsettings"), - logsetting_type("LogSetting", LogSettingImpl::Unserialize) + MSService("MemoServService", "MemoServ"), commandcslog(this), + logsetting_type("LogSetting", LogSettingImpl::Unserialize), + logsettings(this, "logsettings") { } |