diff options
author | Adam <Adam@anope.org> | 2011-08-17 15:56:40 -0400 |
---|---|---|
committer | Adam <Adam@anope.org> | 2011-08-17 15:56:40 -0400 |
commit | ede910d6556ce848ce942176034b00ced16976df (patch) | |
tree | 9683a7bfe113f61b61c815b7260cfcce77a1dbab /include | |
parent | 0f4c9a43b3240709d3ddbbfd8450197bd8eb9096 (diff) |
Made /os oper info also show all inherited commands/privs
Diffstat (limited to 'include')
-rw-r--r-- | include/opertype.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/opertype.h b/include/opertype.h index 364343f25..f76fc07b1 100644 --- a/include/opertype.h +++ b/include/opertype.h @@ -104,12 +104,12 @@ class CoreExport OperType /** Gets the icommands for this opertype * @return A list of commands */ - const std::list<Anope::string> &GetCommands() const; + const std::list<Anope::string> GetCommands() const; /** Gets the privileges for this opertype * @return A list of privileges */ - const std::list<Anope::string> &GetPrivs() const; + const std::list<Anope::string> GetPrivs() const; }; #endif // OPERTYPE_H |