Added owner/admin/halfops to default permissions

git-svn-id: https://znc.svn.sourceforge.net/svnroot/znc/trunk@283 726aef4b-f618-498e-8847-2d620e286838
This commit is contained in:
prozacx
2005-05-14 00:27:31 +00:00
parent d662bb3cfb
commit 0342ea84f0

View File

@@ -17,17 +17,18 @@ CIRCSock::CIRCSock(CZNC* pZNC, CUser* pUser) : Csock() {
m_MotdBuffer.SetLineCount(200); // This should be more than enough motd lines
m_Nick.SetIdent(pUser->GetIdent());
m_Nick.SetHost(pUser->GetVHost());
m_sPerms = "@+";
m_sPermModes = "ov";
m_sPerms = "*!@%+";
m_sPermModes = "qaohv";
m_mueChanModes['b'] = ListArg;
m_mueChanModes['e'] = ListArg;
m_mueChanModes['I'] = ListArg;
m_mueChanModes['k'] = HasArg;
m_mueChanModes['l'] = ArgWhenSet;
m_mueChanModes['p'] = NoArg;
m_mueChanModes['s'] = NoArg;
m_mueChanModes['t'] = NoArg;
m_mueChanModes['i'] = NoArg;
m_mueChanModes['n'] = NoArg;
m_mueChanModes['b'] = HasArg;
m_mueChanModes['e'] = HasArg;
m_mueChanModes['k'] = HasArg;
m_mueChanModes['l'] = ArgWhenSet;
}
CIRCSock::~CIRCSock() {