From 5b3f81ea78f7a8ab69ff94cbf2bbf07f5966682e Mon Sep 17 00:00:00 2001 From: Adam Date: Sun, 5 May 2013 21:05:43 -0400 Subject: That doesn't work either, just don't use references. find ./ -name '*.cpp' -exec sed -i 's/Get/Get/g' {} \; --- modules/m_helpchan.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules/m_helpchan.cpp') diff --git a/modules/m_helpchan.cpp b/modules/m_helpchan.cpp index 4768fec71..eaf6eb777 100644 --- a/modules/m_helpchan.cpp +++ b/modules/m_helpchan.cpp @@ -18,7 +18,7 @@ class HelpChannel : public Module EventReturn OnChannelModeSet(Channel *c, MessageSource &setter, const Anope::string &mname, const Anope::string ¶m) anope_override { - if (mname == "OP" && c && c->ci && c->name.equals_ci(Config->GetModule(this)->Get("helpchannel"))) + if (mname == "OP" && c && c->ci && c->name.equals_ci(Config->GetModule(this)->Get("helpchannel"))) { User *u = User::Find(param); -- cgit