diff options
Diffstat (limited to 'src/opertype.cpp')
-rw-r--r-- | src/opertype.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/opertype.cpp b/src/opertype.cpp index a4ea94dd3..dd4ec7307 100644 --- a/src/opertype.cpp +++ b/src/opertype.cpp @@ -66,3 +66,14 @@ void OperType::Inherits(OperType *ot) { this->inheritances.insert(ot); } + +const std::list<Anope::string> &OperType::GetCommands() const +{ + return this->commands; +} + +const std::list<Anope::string> &OperType::GetPrivs() const +{ + return this->privs; +} + |