diff options
author | Attila Molnar <attilamolnar@hush.com> | 2016-12-30 17:32:01 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2016-12-30 17:32:01 +0100 |
commit | a4508da82cb17120c04f697d6c63660cd697284b (patch) | |
tree | fe113422b9486434fc8bc712806fe2278b7d882f /src/modules/m_sanick.cpp | |
parent | e754d900a33d005078efde0c298ddc0bc7c6fdbb (diff) |
Penalize commands that had 0 penalty
Diffstat (limited to 'src/modules/m_sanick.cpp')
-rw-r--r-- | src/modules/m_sanick.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sanick.cpp b/src/modules/m_sanick.cpp index 3dc89b4f6..c9ceba78e 100644 --- a/src/modules/m_sanick.cpp +++ b/src/modules/m_sanick.cpp @@ -29,7 +29,7 @@ class CommandSanick : public Command CommandSanick(Module* Creator) : Command(Creator,"SANICK", 2) { allow_empty_last_param = false; - flags_needed = 'o'; Penalty = 0; syntax = "<nick> <new-nick>"; + flags_needed = 'o'; syntax = "<nick> <new-nick>"; TRANSLATE2(TR_NICK, TR_TEXT); } |