1 /* +------------------------------------+
2 * | Inspire Internet Relay Chat Daemon |
3 * +------------------------------------+
5 * InspIRCd is copyright (C) 2002-2006 ChatSpike-Dev.
7 * <brain@chatspike.net>
8 * <Craig@chatspike.net>
10 * Written by Craig Edwards, Craig McLure, and others.
11 * This program is free but copyrighted software; see
12 * the file COPYING for details.
14 * ---------------------------------------------------
17 #include "configreader.h"
19 #include "commands/cmd_map.h"
21 extern "C" command_t* init_command(InspIRCd* Instance)
23 return new cmd_map(Instance);
28 CmdResult cmd_map::Handle (const char** parameters, int pcnt, userrec *user)
30 // as with /LUSERS this does nothing without a linking
31 // module to override its behaviour and display something
33 user->WriteServ("006 %s :%s",user->nick,ServerInstance->Config->ServerName);
34 user->WriteServ("007 %s :End of /MAP",user->nick);