aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/m_hideoper.cpp
diff options
context:
space:
mode:
authorGravatar attilamolnar2013-04-11 23:47:45 +0200
committerGravatar attilamolnar2013-07-01 19:21:08 +0200
commitf2cdf27dd9c45f91f4184b81ea3b9be7c5d88173 (patch)
tree2af494a7cf74fc8731e6cae695ae37a2267b6d5e /src/modules/m_hideoper.cpp
parentFix a few oversights (diff)
downloadinspircd++-f2cdf27dd9c45f91f4184b81ea3b9be7c5d88173.tar.gz
inspircd++-f2cdf27dd9c45f91f4184b81ea3b9be7c5d88173.tar.bz2
inspircd++-f2cdf27dd9c45f91f4184b81ea3b9be7c5d88173.zip
Replace hardcoded mode letters passed to IsModeSet() and GetModeParameter() with ModeHandlers, part 1
Diffstat (limited to 'src/modules/m_hideoper.cpp')
-rw-r--r--src/modules/m_hideoper.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/m_hideoper.cpp b/src/modules/m_hideoper.cpp
index 8c0757fe8..832e5613a 100644
--- a/src/modules/m_hideoper.cpp
+++ b/src/modules/m_hideoper.cpp
@@ -63,7 +63,7 @@ class ModuleHideOper : public Module
if (numeric != 313)
return MOD_RES_PASSTHRU;
- if (!dest->IsModeSet('H'))
+ if (!dest->IsModeSet(hm))
return MOD_RES_PASSTHRU;
if (!user->HasPrivPermission("users/auspex"))
@@ -74,7 +74,7 @@ class ModuleHideOper : public Module
void OnSendWhoLine(User* source, const std::vector<std::string>& params, User* user, std::string& line) CXX11_OVERRIDE
{
- if (user->IsModeSet('H') && !source->HasPrivPermission("users/auspex"))
+ if (user->IsModeSet(hm) && !source->HasPrivPermission("users/auspex"))
{
// hide the "*" that marks the user as an oper from the /WHO line
std::string::size_type pos = line.find("*");