diff options
author | Adam <Adam@anope.org> | 2013-08-27 03:18:43 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-08-27 03:18:43 -0400 |
commit | 59ea36c831796aaa29427e9645e4eb56185b04f3 (patch) | |
tree | 53d7d700c9dfd066ca86739ca7bbd75f0fa990b9 /modules/commands/cs_mode.cpp | |
parent | fac880664c41f36a6f091e2b6e6321a51bc5070b (diff) |
Move Serialize::Types to construct after the corresponding extensible items they require when unserializing
Diffstat (limited to 'modules/commands/cs_mode.cpp')
-rw-r--r-- | modules/commands/cs_mode.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/modules/commands/cs_mode.cpp b/modules/commands/cs_mode.cpp index 0974f18c2..856b43870 100644 --- a/modules/commands/cs_mode.cpp +++ b/modules/commands/cs_mode.cpp @@ -828,14 +828,14 @@ class CSMode : public Module { CommandCSMode commandcsmode; CommandCSModes commandcsmodes; - Serialize::Type modelocks_type; ExtensibleItem<ModeLocksImpl> modelocks; + Serialize::Type modelocks_type; public: CSMode(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, VENDOR), commandcsmode(this), commandcsmodes(this), - modelocks_type("ModeLock", ModeLockImpl::Unserialize), - modelocks(this, "modelocks") + modelocks(this, "modelocks"), + modelocks_type("ModeLock", ModeLockImpl::Unserialize) { } |