diff options
-rw-r--r-- | include/u_listmode.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/u_listmode.h b/include/u_listmode.h index 2fb55a337..15c139f6b 100644 --- a/include/u_listmode.h +++ b/include/u_listmode.h @@ -79,7 +79,7 @@ class ListModeRequest : public Request * @param literalstr String to check against, e.g. "Bob!Bobbertson@weeblshouse" * @param extbanchar Extended ban character to use for the match, or a null char if not using extban */ - ListModeRequest(Module* sender, Module* target, std::string literalstr, char extbanchar) : Request(sender, target, "LM_CHECKLIST_EX"), literal(literalstr), extban(extbanchar) + ListModeRequest(Module* sender, Module* target, std::string literalstr, char extbanchar, Channel* channel) : Request(sender, target, "LM_CHECKLIST_EX"), literal(literalstr), extban(extbanchar), chan(channel) { } |