summaryrefslogtreecommitdiff
path: root/src/modules/m_silence.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_silence.cpp')
-rw-r--r--src/modules/m_silence.cpp9
1 files changed, 7 insertions, 2 deletions
diff --git a/src/modules/m_silence.cpp b/src/modules/m_silence.cpp
index dd720608f..9cf9f6d4e 100644
--- a/src/modules/m_silence.cpp
+++ b/src/modules/m_silence.cpp
@@ -82,6 +82,11 @@ class CommandSVSSilence : public Command
return CMD_SUCCESS;
}
+
+ RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters)
+ {
+ return ROUTE_BROADCAST;
+ }
};
class CommandSilence : public Command
@@ -112,7 +117,7 @@ class CommandSilence : public Command
}
user->WriteNumeric(272, "%s :End of Silence List",user->nick.c_str());
- return CMD_LOCALONLY;
+ return CMD_SUCCESS;
}
else if (parameters.size() > 0)
{
@@ -199,7 +204,7 @@ class CommandSilence : public Command
return CMD_SUCCESS;
}
}
- return CMD_LOCALONLY;
+ return CMD_SUCCESS;
}
/* turn the nice human readable pattern into a mask */