diff options
author | Attila Molnar <attilamolnar@hush.com> | 2015-01-19 17:47:03 +0100 |
---|---|---|
committer | Attila Molnar <attilamolnar@hush.com> | 2015-01-19 17:47:03 +0100 |
commit | 54ecd7ff910408015d395c5c737fb48dfb9d7a0a (patch) | |
tree | e528150b2ef9507c8a913b38b8ecc5999ec17e11 /src/commands/cmd_rules.cpp | |
parent | 17b4151bff2edcec3f3524cc60e536407c70cec6 (diff) | |
parent | 80350a67aa7d45e5068f46b8995be92b0d9b40aa (diff) |
Merge branch 'insp20+penalty' into insp20
Diffstat (limited to 'src/commands/cmd_rules.cpp')
-rw-r--r-- | src/commands/cmd_rules.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/commands/cmd_rules.cpp b/src/commands/cmd_rules.cpp index 17de9f3f2..7aacf8c31 100644 --- a/src/commands/cmd_rules.cpp +++ b/src/commands/cmd_rules.cpp @@ -49,7 +49,13 @@ class CommandRules : public Command CmdResult CommandRules::Handle (const std::vector<std::string>& parameters, User *user) { if (parameters.size() > 0 && parameters[0] != ServerInstance->Config->ServerName) + { + // Give extra penalty if a non-oper queries the /RULES of a remote server + LocalUser* localuser = IS_LOCAL(user); + if ((localuser) && (!IS_OPER(user))) + localuser->CommandFloodPenalty += 2000; return CMD_SUCCESS; + } ConfigTag* tag = ServerInstance->Config->EmptyTag; if (IS_LOCAL(user)) |