X-Git-Url: https://git.netwichtig.de/gitweb/?a=blobdiff_plain;f=src%2Fmodules%2Fm_randquote.cpp;h=f353701e1efdd8c79b2a6bdb81c4cf928b91a9c1;hb=84a1569cd60daa64b1ae52a1fff62c0dc4d78850;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..f353701e1 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 @@ -67,7 +77,7 @@ class ModuleRandQuote : public Module } ServerInstance->AddCommand(&cmd); Implementation eventlist[] = { I_OnUserConnect }; - ServerInstance->Modules->Attach(eventlist, this, 1); + ServerInstance->Modules->Attach(eventlist, this, sizeof(eventlist)/sizeof(Implementation)); } @@ -78,7 +88,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)