diff options
| author | 2014-01-21 14:04:45 +0100 | |
|---|---|---|
| committer | 2014-01-21 14:04:45 +0100 | |
| commit | ed57ffc4febceeb30da35a37ac0b0c386234dd3b (patch) | |
| tree | daf9c2ba7843db60065a755b3025b90b0f278611 /src/commands/cmd_commands.cpp | |
| parent | m_joinflood Unset the mode on unload (diff) | |
Increase the penalty for a few core commands
Diffstat (limited to 'src/commands/cmd_commands.cpp')
| -rw-r--r-- | src/commands/cmd_commands.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/commands/cmd_commands.cpp b/src/commands/cmd_commands.cpp index 36408b363..1555b4d04 100644 --- a/src/commands/cmd_commands.cpp +++ b/src/commands/cmd_commands.cpp @@ -30,7 +30,11 @@ class CommandCommands : public Command public: /** Constructor for commands. */ - CommandCommands ( Module* parent) : Command(parent,"COMMANDS",0,0) { } + CommandCommands(Module* parent) : Command(parent,"COMMANDS",0,0) + { + Penalty = 3; + } + /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command |
