diff options
author | Adam <Adam@anope.org> | 2013-01-29 05:10:59 -0500 |
---|---|---|
committer | Adam <Adam@anope.org> | 2013-01-29 05:12:52 -0500 |
commit | 9650a3ffa578469bf1fa96c1cd7e6fe08d1a980f (patch) | |
tree | 01894e3027e606d21688df2789db520f967eea5c /src | |
parent | 14a957f8a03983fea5986c0464e73156d3dad018 (diff) |
Bug #1474 - Fixed setting user modes on BotServ bots on Unreal3.2.10
This was caused by Unreal's revision 58c35ea52a1f
Diffstat (limited to 'src')
-rw-r--r-- | src/protocol/unreal32.c | 6 |
1 files changed, 3 insertions, 3 deletions
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 */ |