summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_cloaking.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/modules/m_cloaking.cpp b/src/modules/m_cloaking.cpp
index 8021fcbd4..5b485704b 100644
--- a/src/modules/m_cloaking.cpp
+++ b/src/modules/m_cloaking.cpp
@@ -56,11 +56,11 @@ class CloakUser : public ModeHandler
return MODEACTION_ALLOW;
}
- /* don't allow this user to spam modechanges */
- IS_LOCAL(dest)->CommandFloodPenalty += 5000;
-
if (adding && !dest->IsModeSet('x'))
{
+ /* don't allow this user to spam modechanges */
+ IS_LOCAL(dest)->CommandFloodPenalty += 5000;
+
std::string* cloak = ext.get(dest);
if (!cloak)
@@ -78,6 +78,9 @@ class CloakUser : public ModeHandler
}
else if (!adding && dest->IsModeSet('x'))
{
+ /* don't allow this user to spam modechanges */
+ IS_LOCAL(dest)->CommandFloodPenalty += 5000;
+
/* User is removing the mode, so restore their real host
* and make it match the displayed one.
*/