X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_silence.cpp;h=9cf9f6d4ef6e501951ddcb7ce4609a3952cd26cf;hb=1c1c5fc3f01c42a09d34594989679bbc8fb21c0d;hp=dd720608fdf573ed2733e1f71c2034f1032eb827;hpb=b45dcb19d3350a5ae5e9a006b3679f0bc3992fea;p=user%2Fhenk%2Fcode%2Finspircd.git 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& 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 */