aboutsummaryrefslogtreecommitdiff
path: root/src/modules/m_operchans.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_operchans.cpp')
-rw-r--r--src/modules/m_operchans.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_operchans.cpp b/src/modules/m_operchans.cpp
index 61e430633..e6c53bb12 100644
--- a/src/modules/m_operchans.cpp
+++ b/src/modules/m_operchans.cpp
@@ -54,7 +54,7 @@ public:
return false;
// Replace spaces with underscores as they're prohibited in mode parameters.
- std::string opername(user->oper->name);
+ std::string opername(user->oper->GetType());
stdalgo::string::replace_all(opername, space, underscore);
return InspIRCd::Match(opername, text);
}