diff options
author | Attila Molnar <attilamolnar@hush.com> | 2014-01-21 14:04:45 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2014-01-21 14:04:45 +0100 |
commit | ed57ffc4febceeb30da35a37ac0b0c386234dd3b (patch) | |
tree | daf9c2ba7843db60065a755b3025b90b0f278611 /src/commands/cmd_modules.cpp | |
parent | e1d0503a760bc6f43804e2212d997d6bee22cfa2 (diff) |
Increase the penalty for a few core commands
Diffstat (limited to 'src/commands/cmd_modules.cpp')
-rw-r--r-- | src/commands/cmd_modules.cpp | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/commands/cmd_modules.cpp b/src/commands/cmd_modules.cpp index e21df9b08..2a15b43ed 100644 --- a/src/commands/cmd_modules.cpp +++ b/src/commands/cmd_modules.cpp @@ -31,7 +31,12 @@ class CommandModules : public Command public: /** Constructor for modules. */ - CommandModules ( Module* parent) : Command(parent,"MODULES",0,0) { syntax = "[server]"; } + CommandModules(Module* parent) : Command(parent,"MODULES",0,0) + { + Penalty = 4; + syntax = "[<servername>]"; + } + /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command |