summaryrefslogtreecommitdiff
path: root/src/modules/m_devoice.cpp
diff options
context:
space:
mode:
authorGravatar w00t2007-08-03 21:22:40 +0000
committerGravatar w00t2007-08-03 21:22:40 +0000
commit2bb30c6f5aea0b237384782fb5cabfdac94fdffd (patch)
tree44966206d12d75414bb1ccf7eb39add26f8f5cdd /src/modules/m_devoice.cpp
parentmark 7637 as merged (diff)
Backport 7641 manually via patch file. I'm off for pleasures of the flesh, cyall. :P
git-svn-id: http://svn.inspircd.org/repository/branches/1_1_stable@7642 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_devoice.cpp')
-rw-r--r--src/modules/m_devoice.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_devoice.cpp b/src/modules/m_devoice.cpp
index e2ada413b..06413f0ec 100644
--- a/src/modules/m_devoice.cpp
+++ b/src/modules/m_devoice.cpp
@@ -49,7 +49,7 @@ class cmd_devoice : public command_t
ServerInstance->SendMode(modes,3,n);
delete n;
- /* route it */
+ /* route it -- SendMode doesn't distribute over the whole network */
return CMD_SUCCESS;
}
@@ -74,7 +74,7 @@ class ModuleDeVoice : public Module
virtual Version GetVersion()
{
- return Version(1, 1, 0, 0, VF_VENDOR, API_VERSION);
+ return Version(1, 1, 0, 0, VF_COMMON | VF_VENDOR, API_VERSION);
}
};