diff options
Diffstat (limited to 'src/cmd_loadmodule.cpp')
| -rw-r--r-- | src/cmd_loadmodule.cpp | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/src/cmd_loadmodule.cpp b/src/cmd_loadmodule.cpp deleted file mode 100644 index c6f0a611c..000000000 --- a/src/cmd_loadmodule.cpp +++ /dev/null @@ -1,37 +0,0 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ - * - * InspIRCd: (C) 2002-2007 InspIRCd Development Team - * See: http://www.inspircd.org/wiki/index.php/Credits - * - * This program is free but copyrighted software; see - * the file COPYING for details. - * - * --------------------------------------------------- - */ - -#include "inspircd.h" -#include "commands/cmd_loadmodule.h" - -extern "C" DllExport Command* init_command(InspIRCd* Instance) -{ - return new CommandLoadmodule(Instance); -} - -/** Handle /LOADMODULE - */ -CmdResult CommandLoadmodule::Handle (const char** parameters, int pcnt, User *user) -{ - if (ServerInstance->Modules->Load(parameters[0])) - { - ServerInstance->WriteOpers("*** NEW MODULE: %s loaded %s",user->nick, parameters[0]); - user->WriteServ("975 %s %s :Module successfully loaded.",user->nick, parameters[0]); - return CMD_SUCCESS; - } - else - { - user->WriteServ("974 %s %s :Failed to load module: %s",user->nick, parameters[0], ServerInstance->Modules->LastError()); - return CMD_FAILURE; - } -} |
