diff options
author | attilamolnar <attilamolnar@hush.com> | 2012-09-02 03:06:59 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2012-09-02 03:08:43 +0200 |
commit | 732e279187d1cd2ac97443a1ce908cd07d8ef078 (patch) | |
tree | 2d5d1bc36f8c8b28c5c1d24a681c5c3c4463cc1d /src/modules/m_svshold.cpp | |
parent | 684b44d4e64438ab251da00add8ba1fc56f6e15d (diff) |
m_svshold Broadcast SVSHOLD commands sent by servers without ADDLINE
Fixes #293 reported by @DrRenX
Diffstat (limited to 'src/modules/m_svshold.cpp')
-rw-r--r-- | src/modules/m_svshold.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_svshold.cpp b/src/modules/m_svshold.cpp index 37288a322..3b920b466 100644 --- a/src/modules/m_svshold.cpp +++ b/src/modules/m_svshold.cpp @@ -151,7 +151,7 @@ class CommandSvshold : public Command RouteDescriptor GetRouting(User* user, const std::vector<std::string>& parameters) { - return ROUTE_LOCALONLY; + return ROUTE_BROADCAST; } }; |