diff options
author | attilamolnar <attilamolnar@hush.com> | 2013-06-13 18:41:10 +0200 |
---|---|---|
committer | attilamolnar <attilamolnar@hush.com> | 2013-06-13 18:41:10 +0200 |
commit | c25a59d9036444872d831a126c6326f3d8be5e74 (patch) | |
tree | ee29e42bf59f5207890bb97fae37fd2d1ac6771b /src/commands | |
parent | 05c816fcb2a8ca0ff97472f756aa28a04084de33 (diff) |
Remove TR_END, remove TRANSLATEx() from commands that do not need it
Diffstat (limited to 'src/commands')
-rw-r--r-- | src/commands/cmd_kill.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_kill.cpp b/src/commands/cmd_kill.cpp index 74024f84e..dddfe4291 100644 --- a/src/commands/cmd_kill.cpp +++ b/src/commands/cmd_kill.cpp @@ -37,7 +37,7 @@ class CommandKill : public Command CommandKill ( Module* parent) : Command(parent,"KILL",2,2) { flags_needed = 'o'; syntax = "<nickname> <reason>"; - TRANSLATE3(TR_CUSTOM, TR_CUSTOM, TR_END); + TRANSLATE2(TR_CUSTOM, TR_CUSTOM); } /** Handle command. * @param parameters The parameters to the comamnd |