1
0
mirror of https://github.com/anope/anope.git synced 2026-06-30 17:26:39 +02:00

Fix CommandCSMode::CanSet letting everyone set voice

This commit is contained in:
Adam
2013-02-13 19:28:45 -05:00
parent 9e544a6443
commit 5cf1edeb6e
4 changed files with 10 additions and 10 deletions
+1 -1
View File
@@ -119,7 +119,7 @@ ChannelModeParam::~ChannelModeParam()
{
}
ChannelModeStatus::ChannelModeStatus(const Anope::string &mname, char modeChar, char mSymbol, unsigned short mLevel) : ChannelMode(mname, modeChar), Symbol(mSymbol), Level(mLevel)
ChannelModeStatus::ChannelModeStatus(const Anope::string &mname, char modeChar, char mSymbol, short mlevel) : ChannelMode(mname, modeChar), Symbol(mSymbol), level(mlevel)
{
this->type = MODE_STATUS;
}