1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 11:36:37 +02:00

Parse 1205-style mode lists for CAPAB CHANMODES/USERMODES.

This commit is contained in:
Peter Powell
2019-06-04 21:22:35 +01:00
committed by P. Powell
parent bae8987ec1
commit c35029fa2f
3 changed files with 223 additions and 228 deletions
+1 -1
View File
@@ -186,7 +186,7 @@ ChannelModeParam::ChannelModeParam(const Anope::string &cm, char mch, bool ma) :
this->type = MODE_PARAM;
}
ChannelModeStatus::ChannelModeStatus(const Anope::string &mname, char modeChar, char msymbol, short mlevel) : ChannelMode(mname, modeChar), symbol(msymbol), level(mlevel)
ChannelModeStatus::ChannelModeStatus(const Anope::string &mname, char modeChar, char msymbol, unsigned mlevel) : ChannelMode(mname, modeChar), symbol(msymbol), level(mlevel)
{
this->type = MODE_STATUS;
}