From 4db5289ea69fe7c2039bcd1eb72d19cba6119097 Mon Sep 17 00:00:00 2001 From: stskeeps Date: Tue, 24 Apr 2007 10:59:02 +0000 Subject: [PATCH] - #0003232 reported by vonitsanet patched by djGrr, regarding /map is not shown u:lined servers to local opers and /links does. --- Changes | 1 + src/modules/m_map.c | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/Changes b/Changes index d69557a01..fdeeb43a3 100644 --- a/Changes +++ b/Changes @@ -1610,3 +1610,4 @@ MOTDs - Fixed a typo in #003091 related patch - #0002846 reported by alex323, patched by WolfSage, regarding local ircop cannot issue CLOSE command - #0002685 reported by w00t, patched by WolfSage, regarding useless if () in m_help.c +- #0003232 reported by vonitsanet patched by djGrr, regarding /map is not shown u:lined servers to local opers and /links does. diff --git a/src/modules/m_map.c b/src/modules/m_map.c index 93d65f2ea..cbbf1c670 100644 --- a/src/modules/m_map.c +++ b/src/modules/m_map.c @@ -130,7 +130,7 @@ static void dump_map(aClient *cptr, aClient *server, char *mask, int prompt_leng for (lp = Servers; lp; lp = lp->next) { acptr = lp->value.cptr; - if (IsULine(acptr) && HIDE_ULINES && !IsOper(cptr)) + if (IsULine(acptr) && HIDE_ULINES && !IsAnOper(cptr)) continue; if (acptr->srvptr != server) continue;