mirror of
https://github.com/anope/anope.git
synced 2026-07-08 01:23:14 +02:00
Can now correctly tie users to opertypes.
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@2063 5417fbe8-f217-4b02-8779-1006273d7864
This commit is contained in:
+7
-2
@@ -15,12 +15,12 @@ OperType::OperType(const std::string &nname) : name(nname)
|
||||
{
|
||||
}
|
||||
|
||||
bool OperType::HasCommand(const std::string &cmdstr)
|
||||
bool OperType::HasCommand(const std::string &cmdstr) const
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
bool OperType::HasPriv(const std::string &privstr)
|
||||
bool OperType::HasPriv(const std::string &privstr) const
|
||||
{
|
||||
|
||||
}
|
||||
@@ -35,3 +35,8 @@ void OperType::AddPriv(const std::string &privstr)
|
||||
this->privs.push_back(privstr);
|
||||
}
|
||||
|
||||
const std::string &OperType::GetName() const
|
||||
{
|
||||
return this->name;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user