From 978415e3200d8d2023d90bb3c811c387ddf13379 Mon Sep 17 00:00:00 2001 From: "geniusdex geniusdex@31f1291d-b8d6-0310-a050-a5561fc1590b" Date: Sun, 2 Oct 2005 11:34:11 +0000 Subject: [PATCH] BUILD : 1.7.11 (909) BUGS : NOTES : Fixed /cs hop being available on ircds without halfop support git-svn-id: svn://svn.anope.org/anope/trunk@909 31f1291d-b8d6-0310-a050-a5561fc1590b git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@655 5417fbe8-f217-4b02-8779-1006273d7864 --- Changes | 1 + src/core/cs_xop.c | 6 ++++-- version.log | 6 +++++- 3 files changed, 10 insertions(+), 3 deletions(-) diff --git a/Changes b/Changes index abf2fae0b..169ea8b86 100644 --- a/Changes +++ b/Changes @@ -4,6 +4,7 @@ Provided by Anope Dev. - 2005 10/01 A Information on uplink server can be displayed via OperServ STATS. [ #00] 09/29 A Configuration option to change fantasy command prefix character. [ #00] 09/28 A Event for fantasy commands triggered without channel access. [ #00] +10/01 F ChanServ HOP was available on IRCDs without halfop support. [ #00] 10/01 F Placed capab tokens and flags into a table for easier handling. [ #00] 10/01 F Capab parsing on hybrid/plexus/ratbox failed. [ #00] 10/01 F Typo in example.conf (DevNullAlias was called DevNullName). [ #00] diff --git a/src/core/cs_xop.c b/src/core/cs_xop.c index 6209015a8..5d897538b 100644 --- a/src/core/cs_xop.c +++ b/src/core/cs_xop.c @@ -98,8 +98,10 @@ int AnopeInit(int argc, char **argv) c = createCommand("AOP", do_aop, NULL, CHAN_HELP_AOP, -1, -1, -1, -1); moduleAddCommand(CHANSERV, c, MOD_UNIQUE); - c = createCommand("HOP", do_hop, NULL, CHAN_HELP_HOP, -1, -1, -1, -1); - moduleAddCommand(CHANSERV, c, MOD_UNIQUE); + if (ircd->halfop) { + c = createCommand("HOP", do_hop, NULL, CHAN_HELP_HOP, -1, -1, -1, -1); + moduleAddCommand(CHANSERV, c, MOD_UNIQUE); + } c = createCommand("SOP", do_sop, NULL, CHAN_HELP_SOP, -1, -1, -1, -1); moduleAddCommand(CHANSERV, c, MOD_UNIQUE); c = createCommand("VOP", do_vop, NULL, CHAN_HELP_VOP, -1, -1, -1, -1); diff --git a/version.log b/version.log index 4b88e6dea..f31b2788f 100644 --- a/version.log +++ b/version.log @@ -9,10 +9,14 @@ VERSION_MAJOR="1" VERSION_MINOR="7" VERSION_PATCH="11" VERSION_EXTRA="-svn" -VERSION_BUILD="908" +VERSION_BUILD="909" # $Log$ # +# BUILD : 1.7.11 (909) +# BUGS : +# NOTES : Fixed /cs hop being available on ircds without halfop support +# # BUILD : 1.7.11 (908) # BUGS : # NOTES : Created a CapabInfo table to allow easier handling of capab tokens/flags