]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/cmd_squit.cpp
Whoops, i left a value out of the array, and gcc didnt warn!
[user/henk/code/inspircd.git] / src / cmd_squit.cpp
index f2c9c01ef93477ef709911c2810262da03d837f5..49360d84fe3208187e521ac80310b12816ac5a8e 100644 (file)
@@ -11,6 +11,7 @@
  * ---------------------------------------------------
  */
 
+#include "inspircd.h"
 #include "users.h"
 #include "commands/cmd_squit.h"
 
  */
 
 
-extern "C" command_t* init_command(InspIRCd* Instance)
+extern "C" DllExport command_t* init_command(InspIRCd* Instance)
 {
        return new cmd_squit(Instance);
 }
 
 CmdResult cmd_squit::Handle (const char** parameters, int pcnt, userrec *user)
 {
-       user->WriteServ( "NOTICE %s :You are a nub. Load a linking module.", user->nick);
+       user->WriteServ( "NOTICE %s :Look into loading a linking module (like m_spanningtree) if you want this to do anything useful.", user->nick);
        return CMD_FAILURE;
 }