diff options
| author | 2004-04-23 13:17:27 +0000 | |
|---|---|---|
| committer | 2004-04-23 13:17:27 +0000 | |
| commit | f3b7df7b96f85406f9a98fb2ec83237f9a8c7c14 (patch) | |
| tree | 5bb12a1bac466c69f4718ea670134c0bcc48887f /src/modules.cpp | |
| parent | Message forwarding fixes (diff) | |
| download | inspircd++-f3b7df7b96f85406f9a98fb2ec83237f9a8c7c14.tar.gz inspircd++-f3b7df7b96f85406f9a98fb2ec83237f9a8c7c14.tar.bz2 inspircd++-f3b7df7b96f85406f9a98fb2ec83237f9a8c7c14.zip | |
a|KK|y bitching
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@703 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules.cpp')
| -rw-r--r-- | src/modules.cpp | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/modules.cpp b/src/modules.cpp index 1c37dd0cb..a052b9302 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -14,6 +14,7 @@ #include "wildcard.h" #include "mode.h" #include "message.h" +#include "commands.h" // class type for holding an extended mode character - internal to core @@ -178,6 +179,11 @@ void Server::QuitUser(userrec* user, std::string reason) kill_link(user,reason.c_str()); } +bool Server::IsUlined(std::string server) +{ + return is_uline(server.c_str()) +} + void Server::CallCommandHandler(std::string commandname, char** parameters, int pcnt, userrec* user) { call_handler(commandname.c_str(),parameters,pcnt,user); |
