X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_randquote.cpp;h=d8a2b843145e1a94d267a6522d0845a7ae553963;hb=e9e75e50bc25e67af22dd88b39b12217a553d5cb;hp=7d4ad042f502dc5d47498c06887b6ebc12063f39;hpb=aab7998583ca16590a32c7bdb80955a18b090700;p=user%2Fhenk%2Fcode%2Finspircd.git diff --git a/src/modules/m_randquote.cpp b/src/modules/m_randquote.cpp index 7d4ad042f..d8a2b8431 100644 --- a/src/modules/m_randquote.cpp +++ b/src/modules/m_randquote.cpp @@ -1,16 +1,28 @@ -/* +------------------------------------+ - * | Inspire Internet Relay Chat Daemon | - * +------------------------------------+ +/* + * InspIRCd -- Internet Relay Chat Daemon * - * InspIRCd: (C) 2002-2010 InspIRCd Development Team - * See: http://wiki.inspircd.org/Credits + * Copyright (C) 2010 Daniel De Graaf + * Copyright (C) 2007-2008 Robin Burchell + * Copyright (C) 2007 Dennis Friis + * Copyright (C) 2003, 2006 Craig Edwards + * Copyright (C) 2005 Craig McLure * - * This program is free but copyrighted software; see - * the file COPYING for details. + * This file is part of InspIRCd. InspIRCd is free software: you can + * redistribute it and/or modify it under the terms of the GNU General Public + * License as published by the Free Software Foundation, version 2. * - * --------------------------------------------------- + * This program is distributed in the hope that it will be useful, but WITHOUT + * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS + * FOR A PARTICULAR PURPOSE. See the GNU General Public License for more + * details. + * + * You should have received a copy of the GNU General Public License + * along with this program. If not, see . */ + +/* $ModDesc: Provides random quotes on connect. */ + #include "inspircd.h" static FileReader *quotes = NULL; @@ -18,8 +30,6 @@ static FileReader *quotes = NULL; std::string prefix; std::string suffix; -/* $ModDesc: Provides random Quotes on Connect. */ - /** Handle /RANDQUOTE */ class CommandRandquote : public Command @@ -44,7 +54,6 @@ class CommandRandquote : public Command class ModuleRandQuote : public Module { - private: CommandRandquote cmd; public: ModuleRandQuote() @@ -65,12 +74,11 @@ class ModuleRandQuote : public Module { throw ModuleException("m_randquote: QuoteFile not Found!! Please check your config - module will not function."); } - ServerInstance->AddCommand(&cmd); + ServerInstance->Modules->AddService(cmd); Implementation eventlist[] = { I_OnUserConnect }; - ServerInstance->Modules->Attach(eventlist, this, 1); + ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation)); } - virtual ~ModuleRandQuote() { delete quotes; @@ -78,7 +86,7 @@ class ModuleRandQuote : public Module virtual Version GetVersion() { - return Version("Provides random Quotes on Connect.",VF_VENDOR); + return Version("Provides random quotes on connect.",VF_VENDOR); } virtual void OnUserConnect(LocalUser* user)