]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_map.cpp
If the user's nick is just a case change, the TS is NOT updated (thanks jilles)
[user/henk/code/inspircd.git] / src / cmd_map.cpp
index 270374cbf0a568e81f67a7188290fb60cb1a86f2..70918e39275832c6853dbe53d72d05db58a99eb0 100644 (file)
@@ -1 +1,33 @@
-/*       +------------------------------------+\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 "configreader.h"\r#include "users.h"\r#include "commands/cmd_map.h"\r\rextern "C" DllExport command_t* init_command(InspIRCd* Instance)\r{\r      return new cmd_map(Instance);\r}\r\r/** Handle /MAP\r */\rCmdResult cmd_map::Handle (const char** parameters, int pcnt, userrec *user)\r{\r    // as with /LUSERS this does nothing without a linking\r // module to override its behaviour and display something\r      // better.\r     user->WriteServ("006 %s :%s",user->nick,ServerInstance->Config->ServerName);\r   user->WriteServ("007 %s :End of /MAP",user->nick);\r\r    return CMD_SUCCESS;\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_map.h"
+
+extern "C" DllExport command_t* init_command(InspIRCd* Instance)
+{
+       return new cmd_map(Instance);
+}
+
+/** Handle /MAP
+ */
+CmdResult cmd_map::Handle (const char** parameters, int pcnt, userrec *user)
+{
+       // as with /LUSERS this does nothing without a linking
+       // module to override its behaviour and display something
+       // better.
+       user->WriteServ("006 %s :%s",user->nick,ServerInstance->Config->ServerName);
+       user->WriteServ("007 %s :End of /MAP",user->nick);
+
+       return CMD_SUCCESS;
+}