diff --git a/Changes b/Changes index a88d72886..70e219816 100644 --- a/Changes +++ b/Changes @@ -17,6 +17,7 @@ Anope Version S V N 08/21 F Re-worded the CHAN_LEVELS_XOP string in en_us [ #00] 08/27 F Functions firstuser and first_uid now don't collide when used. [#764] 08/27 F Is not posible to use CS SET XOP when cs_xop is not loaded. [#747] +08/27 F SA and SO can be kicked by ChanServ now. [#753] Anope Version 1.7.19 -------------------- diff --git a/src/chanserv.c b/src/chanserv.c index f38e6c5ed..36faedccb 100644 --- a/src/chanserv.c +++ b/src/chanserv.c @@ -1484,7 +1484,7 @@ int check_kick(User * user, char *chan) if (!ci) return 0; - if (is_oper(user) || is_services_admin(user)) + if (user->isSuperAdmin == 1) return 0; if (ci->flags & CI_VERBOTEN) { diff --git a/version.log b/version.log index b8a6edab5..9bb9ff26a 100644 --- a/version.log +++ b/version.log @@ -14,6 +14,10 @@ VERSION_BUILD="1275" # $Log$ # # BUILD : 1.7.19 (1275) +# BUGS : 753 +# NOTES : Services Admins and Services Opers can now be kicked by ChanServ. +# +# BUILD : 1.7.19 (1275) # BUGS : 747 # NOTES : CS SET XOP can not be used if cs_xop is not loaded. #