1
0
mirror of https://github.com/anope/anope.git synced 2026-06-29 03:46:37 +02:00

Fix bahamut mode handler

This commit is contained in:
Adam
2014-11-08 04:31:56 -05:00
parent 64b332730e
commit 8a7793da0c
+5 -1
View File
@@ -328,8 +328,12 @@ struct IRCDMessageMode : IRCDMessage
}
catch (const ConvertException &) { }
Anope::string modes = params[2];
for (unsigned int i = 3; i < params.size(); ++i)
modes += " " + params[i];
if (c)
c->SetModesInternal(source, params[2], ts);
c->SetModesInternal(source, modes, ts);
}
else
{