From 9650a3ffa578469bf1fa96c1cd7e6fe08d1a980f Mon Sep 17 00:00:00 2001 From: Adam Date: Tue, 29 Jan 2013 05:10:59 -0500 Subject: Bug #1474 - Fixed setting user modes on BotServ bots on Unreal3.2.10 This was caused by Unreal's revision 58c35ea52a1f --- Changes | 7 +++++-- src/protocol/unreal32.c | 6 +++--- version.log | 3 ++- 3 files changed, 10 insertions(+), 6 deletions(-) diff --git a/Changes b/Changes index be515e871..346a87a48 100644 --- a/Changes +++ b/Changes @@ -1,10 +1,13 @@ Anope Version 1.8 - GIT ----------------------- -12/23 A Added Hybrid 8.0 support. (Patch provided by Hybrid Team) [ #00] -12/23 R Removed experimental Hybrid 7.0 support. [ #00] +01/29 F Fixed user modes on BotServ bots on Unreal3.2.10 [#1474] + +Provided by Anope Dev. - 2012 02/22 F Fixed several grammar errors in docs/ (patch provided by Simba) [ #00] 02/25 F Do not allow akill masks to end in @ [#1380] 07/14 F Fixed crash with cs_enforce and empty permanent channels [ #00] +12/23 A Added Hybrid 8.0 support. (Patch provided by Hybrid Team) [ #00] +12/23 R Removed experimental Hybrid 7.0 support. [ #00] Provided by Anope Dev. - 2011 12/31 F Fixed os_svsnick to allow changing the case of a users' nick [#1369] diff --git a/src/protocol/unreal32.c b/src/protocol/unreal32.c index 99afe8d0f..9e6c7af9e 100644 --- a/src/protocol/unreal32.c +++ b/src/protocol/unreal32.c @@ -27,7 +27,7 @@ IRCDVar myIrcd[] = { "+ioS", /* operserv mode */ "+oS", /* botserv mode */ "+oS", /* helpserv mode */ - "+iS", /* Dev/Null mode */ + "+ioS", /* Dev/Null mode */ "+ioS", /* Global mode */ "+oS", /* nickserv alias mode */ "+oS", /* chanserv alias mode */ @@ -36,9 +36,9 @@ IRCDVar myIrcd[] = { "+ioS", /* operserv alias mode */ "+oS", /* botserv alias mode */ "+oS", /* helpserv alias mode */ - "+iS", /* Dev/Null alias mode */ + "+ioS", /* Dev/Null alias mode */ "+ioS", /* Global alias mode */ - "+qS", /* Used by BotServ Bots */ + "+oqS", /* Used by BotServ Bots */ 5, /* Chan Max Symbols */ "-cijlmnpstuzACGKMNOQRSTV", /* Modes to Remove */ "+ao", /* Channel Umode used by Botserv bots */ diff --git a/version.log b/version.log index 30540b112..b3d6c8640 100644 --- a/version.log +++ b/version.log @@ -8,9 +8,10 @@ VERSION_MAJOR="1" VERSION_MINOR="8" VERSION_PATCH="8" VERSION_EXTRA="-git" -VERSION_BUILD="3107" +VERSION_BUILD="3108" # Changes since 1.8.7 Release +#Revision 3108 - Bug #1474 - Fixed setting umodes on BotServ bots on Unreal3.2.10 #Revision 3106 - Replaced experimental Hybrid 7.0 support by Hybrid 8.0 support. (Patch provided by Hybrid Development Team) #Revision 3105 - Added french language support to some modules (patch provided by Coolsmile) #Revision 3104 - Updated the Polish language file -- cgit