aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/m_rline.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/m_rline.cpp b/src/modules/m_rline.cpp
index 0c5be74e9..9c16e8291 100644
--- a/src/modules/m_rline.cpp
+++ b/src/modules/m_rline.cpp
@@ -49,7 +49,7 @@ public:
/* This can throw on failure, but if it does we DONT catch it here, we catch it and display it
* where the object is created, we might not ALWAYS want it to output stuff to snomask x all the time
*/
- regex = useflags ? rxfactory->Create(regexs) : rxfactory->CreateHuman(regexs);
+ regex = useflags ? rxfactory->CreateHuman(regexs) : rxfactory->Create(regexs);
}
bool Matches(User* u) const override