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_sapart.cpp | |
parent | e754d900a33d005078efde0c298ddc0bc7c6fdbb (diff) |
Penalize commands that had 0 penalty
Diffstat (limited to 'src/modules/m_sapart.cpp')
-rw-r--r-- | src/modules/m_sapart.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_sapart.cpp b/src/modules/m_sapart.cpp index db1e6fdee..b51316dc5 100644 --- a/src/modules/m_sapart.cpp +++ b/src/modules/m_sapart.cpp @@ -28,7 +28,7 @@ class CommandSapart : public Command public: CommandSapart(Module* Creator) : Command(Creator,"SAPART", 2, 3) { - flags_needed = 'o'; Penalty = 0; syntax = "<nick> <channel>[,<channel>] [reason]"; + flags_needed = 'o'; syntax = "<nick> <channel>[,<channel>] [reason]"; TRANSLATE3(TR_NICK, TR_TEXT, TR_TEXT); } |