From aed53dbb47822a79eb9a6b61095ad04ec3d67818 Mon Sep 17 00:00:00 2001 From: Adam Date: Mon, 6 Dec 2010 17:06:57 -0500 Subject: Cleaned up some things, made the protocol modules use some basic inheritance to cut back on their code duplication. More work can be done in the future to remove even more of it. --- src/process.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/process.cpp') diff --git a/src/process.cpp b/src/process.cpp index 285c4ae6b..4a7811c69 100644 --- a/src/process.cpp +++ b/src/process.cpp @@ -101,7 +101,7 @@ IgnoreData *get_ignore(const Anope::string &nick) if (u) { /* Opers are not ignored, even if a matching entry may be present. */ - if (is_oper(u)) + if (u->HasMode(UMODE_OPER)) return NULL; for (; ign != ign_end; ++ign) if (match_usermask((*ign)->mask, u)) -- cgit