]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_summon.cpp
Swap around ERROR and SNONOTICE in SendError() so that the server doesnt try and...
[user/henk/code/inspircd.git] / src / cmd_summon.cpp
index 134ac9f2f817a9f395d64d5306b7a9ce306331ed..3b3595c3f784b15a408400df85b539103a989216 100644 (file)
@@ -1 +1,26 @@
-/*       +------------------------------------+\r *       | Inspire Internet Relay Chat Daemon |\r *       +------------------------------------+\r *\r *  InspIRCd: (C) 2002-2007 InspIRCd Development Team\r * See: http://www.inspircd.org/wiki/index.php/Credits\r *\r * This program is free but copyrighted software; see\r *            the file COPYING for details.\r *\r * ---------------------------------------------------\r */\r\r#include "inspircd.h"\r#include "users.h"\r#include "commands/cmd_summon.h"\r\rextern "C" DllExport command_t* init_command(InspIRCd* Instance)\r{\r     return new cmd_summon(Instance);\r}\r\rCmdResult cmd_summon::Handle (const char** parameters, int pcnt, userrec *user)\r{\r  user->WriteServ("445 %s :SUMMON has been disabled (depreciated command)",user->nick);\r  return CMD_FAILURE;\r}\r
\ No newline at end of file
+/*       +------------------------------------+
+ *       | 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_summon.h"
+
+extern "C" DllExport command_t* init_command(InspIRCd* Instance)
+{
+       return new cmd_summon(Instance);
+}
+
+CmdResult cmd_summon::Handle (const char** parameters, int pcnt, userrec *user)
+{
+       user->WriteServ("445 %s :SUMMON has been disabled (depreciated command)",user->nick);
+       return CMD_FAILURE;
+}