summaryrefslogtreecommitdiff
path: root/src/cmd_loadmodule.cpp
diff options
context:
space:
mode:
authorGravatar brain2006-08-10 14:43:29 +0000
committerGravatar brain2006-08-10 14:43:29 +0000
commit396c9ef9f7a96934d3227bb7d1d091315e3d4fa8 (patch)
treeb775fca47b8536d7e3c5df17480dbf4cca9f6ded /src/cmd_loadmodule.cpp
parentChange to use the core perl module Cwd rather than the pwd command. Should be... (diff)
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/cmd_loadmodule.cpp')
-rw-r--r--src/cmd_loadmodule.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_loadmodule.cpp b/src/cmd_loadmodule.cpp
index ace2debf7..bef24f321 100644
--- a/src/cmd_loadmodule.cpp
+++ b/src/cmd_loadmodule.cpp
@@ -26,7 +26,7 @@ void cmd_loadmodule::Handle (const char** parameters, int pcnt, userrec *user)
{
if (ServerInstance->LoadModule(parameters[0]))
{
- WriteOpers("*** NEW MODULE: %s",parameters[0]);
+ ServerInstance->WriteOpers("*** NEW MODULE: %s",parameters[0]);
user->WriteServ("975 %s %s :Module successfully loaded.",user->nick, parameters[0]);
}
else