diff options
author | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-12 13:44:12 +0000 |
---|---|---|
committer | danieldg <danieldg@e03df62e-2008-0410-955e-edbf42e46eb7> | 2009-10-12 13:44:12 +0000 |
commit | 9aa6c07d92fb9c1132f06b8c5781d77ee7086edb (patch) | |
tree | 1825ff66e82192069e5c864780fb2fd6a2053982 /src/commands/cmd_unloadmodule.cpp | |
parent | 7f1d3c8b3297d8c47b01fe8ebae0faf4b8efb3dc (diff) |
More WriteGlobalSno conversions in rehash, patch by dKingston
git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@11853 e03df62e-2008-0410-955e-edbf42e46eb7
Diffstat (limited to 'src/commands/cmd_unloadmodule.cpp')
-rw-r--r-- | src/commands/cmd_unloadmodule.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/commands/cmd_unloadmodule.cpp b/src/commands/cmd_unloadmodule.cpp index bdc516aac..5aecd22dd 100644 --- a/src/commands/cmd_unloadmodule.cpp +++ b/src/commands/cmd_unloadmodule.cpp @@ -43,7 +43,7 @@ CmdResult CommandUnloadmodule::Handle (const std::vector<std::string>& parameter if (ServerInstance->Modules->Unload(parameters[0].c_str())) { - ServerInstance->SNO->WriteToSnoMask('a', "MODULE UNLOADED: %s unloaded %s", user->nick.c_str(), parameters[0].c_str()); + ServerInstance->SNO->WriteGlobalSno('a', "MODULE UNLOADED: %s unloaded %s", user->nick.c_str(), parameters[0].c_str()); user->WriteNumeric(973, "%s %s :Module successfully unloaded.",user->nick.c_str(), parameters[0].c_str()); } else |