1
0
mirror of https://github.com/anope/anope.git synced 2026-06-28 15:56:38 +02:00

Merge pull request #228 from SaberUK/2.0+casemap

Send the casemap as part of CAPAB CAPABILITIES on InspIRCd.
This commit is contained in:
Adam
2019-01-03 21:10:31 -05:00
committed by GitHub
+1 -1
View File
@@ -37,7 +37,7 @@ class InspIRCd20Proto : public IRCDProto
void SendConnect() anope_override
{
UplinkSocket::Message() << "CAPAB START 1202";
UplinkSocket::Message() << "CAPAB CAPABILITIES :PROTOCOL=1202";
UplinkSocket::Message() << "CAPAB CAPABILITIES :PROTOCOL=1202 CASEMAPPING=" << Config->GetBlock("options")->Get<const Anope::string>("casemap", "ascii");
UplinkSocket::Message() << "CAPAB END";
insp12->SendConnect();
}