aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_timedmodes.cpp
diff options
context:
space:
mode:
authorGravatar Jackmcbarn2010-09-24 20:13:04 -0400
committerGravatar Jackmcbarn2010-09-24 20:13:04 -0400
commit28efdd368597bbdc534e978cff687286b2ca7e85 (patch)
treeafd6b3dbb5e08059b3f73e89e5e1f1ae1093ac3e /src/modules/m_timedmodes.cpp
parentm_account must be OPTCOMMON, it will desync its own data if a hub does not ha... (diff)
downloadinspircd++-28efdd368597bbdc534e978cff687286b2ca7e85.tar.gz
inspircd++-28efdd368597bbdc534e978cff687286b2ca7e85.tar.bz2
inspircd++-28efdd368597bbdc534e978cff687286b2ca7e85.zip
This needs to be VF_OPTCOMMON for the same reason as m_account
Diffstat (limited to 'src/modules/m_timedmodes.cpp')
-rw-r--r--src/modules/m_timedmodes.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_timedmodes.cpp b/src/modules/m_timedmodes.cpp
index a533c0778..ff5726e7c 100644
--- a/src/modules/m_timedmodes.cpp
+++ b/src/modules/m_timedmodes.cpp
@@ -371,7 +371,7 @@ class ModuleTimedModes : public Module
virtual Version GetVersion()
{
- return Version("Adds timed mode changes", VF_VENDOR);
+ return Version("Adds timed mode changes", VF_VENDOR|VF_OPTCOMMON);
}
};