From ff9ac65489ceea7debc9c370cba612d73f234f08 Mon Sep 17 00:00:00 2001 From: Sadie Powell Date: Sun, 29 Jun 2025 12:03:58 +0100 Subject: Fix an inverted condition in rline. --- src/modules/m_rline.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules') 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 -- cgit v1.3.1-10-gc9f91