diff options
| author | 2006-12-07 23:14:23 +0000 | |
|---|---|---|
| committer | 2006-12-07 23:14:23 +0000 | |
| commit | f4be97d195f206433c1b0a986959e75c01da1b20 (patch) | |
| tree | 4598e5ade0f4bfcacd3130ff508089d2699c60c7 /src/cmd_unloadmodule.cpp | |
| parent | Whoops (diff) | |
(1) make command reloads be announced to opers
(2) change loadmodule and unloadmodule to say WHO did it, like with /reload
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@5885 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/cmd_unloadmodule.cpp')
| -rw-r--r-- | src/cmd_unloadmodule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cmd_unloadmodule.cpp b/src/cmd_unloadmodule.cpp index ba8e1f99d..f1612fe09 100644 --- a/src/cmd_unloadmodule.cpp +++ b/src/cmd_unloadmodule.cpp @@ -29,7 +29,7 @@ CmdResult cmd_unloadmodule::Handle (const char** parameters, int pcnt, userrec * { if (ServerInstance->UnloadModule(parameters[0])) { - ServerInstance->WriteOpers("*** MODULE UNLOADED: %s",parameters[0]); + ServerInstance->WriteOpers("*** MODULE UNLOADED: %s unloaded %s", user->nick, parameters[0]); user->WriteServ("973 %s %s :Module successfully unloaded.",user->nick, parameters[0]); } else |
