diff options
author | Daniel De Graaf <danieldg@inspircd.org> | 2010-09-17 22:06:36 -0400 |
---|---|---|
committer | Daniel De Graaf <danieldg@inspircd.org> | 2010-09-17 22:06:50 -0400 |
commit | 49f43c14c6cba623dcd5981b4f56f1dd3f972f0a (patch) | |
tree | 19a98536c4677d46ef3b1e278c896187d9b468e9 /src/modules | |
parent | 1570b13174827cea444d15dc12c6a47cb7c69b28 (diff) |
SVSNICK should not translate nicks to UIDs
Diffstat (limited to 'src/modules')
-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 bb7e22af7..3c6218969 100644 --- a/src/modules/m_svshold.cpp +++ b/src/modules/m_svshold.cpp @@ -82,7 +82,7 @@ class CommandSvshold : public Command CommandSvshold(Module* Creator) : Command(Creator, "SVSHOLD", 1) { flags_needed = 'o'; this->syntax = "<nickname> [<duration> :<reason>]"; - TRANSLATE4(TR_NICK, TR_TEXT, TR_TEXT, TR_END); + TRANSLATE4(TR_TEXT, TR_TEXT, TR_TEXT, TR_END); } CmdResult Handle(const std::vector<std::string> ¶meters, User *user) |