diff options
| author | 2006-08-10 14:43:29 +0000 | |
|---|---|---|
| committer | 2006-08-10 14:43:29 +0000 | |
| commit | 396c9ef9f7a96934d3227bb7d1d091315e3d4fa8 (patch) | |
| tree | b775fca47b8536d7e3c5df17480dbf4cca9f6ded /src/modules/m_sethost.cpp | |
| parent | Change to use the core perl module Cwd rather than the pwd command. Should be... (diff) | |
| download | inspircd++-396c9ef9f7a96934d3227bb7d1d091315e3d4fa8.tar.gz inspircd++-396c9ef9f7a96934d3227bb7d1d091315e3d4fa8.tar.bz2 inspircd++-396c9ef9f7a96934d3227bb7d1d091315e3d4fa8.zip | |
FindNick, FindChan, ChanModes, UserList, CountInvisible, PurgeEmptyChannels, GetClass, WriteOpers, GetServerDescription -> into classes
ServerConfig takes InspIRCd pointer in its constructor
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4832 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/modules/m_sethost.cpp')
| -rw-r--r-- | src/modules/m_sethost.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/modules/m_sethost.cpp b/src/modules/m_sethost.cpp index 631bd13a1..697ba1dfd 100644 --- a/src/modules/m_sethost.cpp +++ b/src/modules/m_sethost.cpp @@ -22,10 +22,12 @@ using namespace std; #include "channels.h" #include "modules.h" #include "helperfuncs.h" +#include "inspircd.h" /* $ModDesc: Provides support for the SETHOST command */ static Server *Srv; +extern InspIRCd* ServerInstance; class cmd_sethost : public command_t { @@ -55,7 +57,7 @@ class cmd_sethost : public command_t } } if (user->ChangeDisplayedHost(parameters[0])) - Srv->SendOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0])); + ServerInstance->WriteOpers(std::string(user->nick)+" used SETHOST to change their displayed host to "+std::string(parameters[0])); } }; |
