diff options
Diffstat (limited to 'src/cmd_squit.cpp')
-rw-r--r-- | src/cmd_squit.cpp | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/cmd_squit.cpp b/src/cmd_squit.cpp index f6d334028..facfcf694 100644 --- a/src/cmd_squit.cpp +++ b/src/cmd_squit.cpp @@ -20,6 +20,13 @@ /* * This is handled by the server linking module, if necessary. Do not remove this stub. */ + + +extern "C" command_t* init_command(InspIRCd* Instance) +{ + return new cmd_squit(Instance); +} + void cmd_squit::Handle (const char** parameters, int pcnt, userrec *user) { user->WriteServ( "NOTICE %s :You are a nub. Load a linking module.", user->nick); |