diff options
| author | 2015-01-12 14:19:58 +0100 | |
|---|---|---|
| committer | 2015-01-12 14:19:58 +0100 | |
| commit | 83bcc83a56a235f5c4e479ff47713f467640a4eb (patch) | |
| tree | a525709b3f8d73f1a6d4ec6b77a93627db466c7c /src/commands/cmd_ping.cpp | |
| parent | Fix harmless uninitialized variable usage on startup if the config is incorrect (diff) | |
| download | inspircd++-83bcc83a56a235f5c4e479ff47713f467640a4eb.tar.gz inspircd++-83bcc83a56a235f5c4e479ff47713f467640a4eb.tar.bz2 inspircd++-83bcc83a56a235f5c4e479ff47713f467640a4eb.zip | |
Increase penalty for some core commands
Diffstat (limited to 'src/commands/cmd_ping.cpp')
| -rw-r--r-- | src/commands/cmd_ping.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_ping.cpp b/src/commands/cmd_ping.cpp index 3ccadd929..dd14b52c8 100644 --- a/src/commands/cmd_ping.cpp +++ b/src/commands/cmd_ping.cpp @@ -30,7 +30,7 @@ class CommandPing : public Command public: /** Constructor for ping. */ - CommandPing ( Module* parent) : Command(parent,"PING", 1, 2) { Penalty = 0; syntax = "<servername> [:<servername>]"; } + CommandPing ( Module* parent) : Command(parent,"PING", 1, 2) { syntax = "<servername> [:<servername>]"; } /** Handle command. * @param parameters The parameters to the comamnd * @param pcnt The number of parameters passed to teh command |
