From b37a253d962ed7af1ea7a328abf2a1af74f30759 Mon Sep 17 00:00:00 2001 From: brain Date: Thu, 10 Aug 2006 23:19:43 +0000 Subject: Note: FOR THE MOMENT, this is BROKEN. It wont run right until im done. Changed Parameter for modules from Server* to InspIRCd*. TODO: Move remaining Server* Modules into InspIRCd* and remove class Server. git-svn-id: http://svn.inspircd.org/repository/trunk/inspircd@4859 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/modules.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/modules.cpp') diff --git a/src/modules.cpp b/src/modules.cpp index 9321047a8..6e1b99c9a 100644 --- a/src/modules.cpp +++ b/src/modules.cpp @@ -130,7 +130,7 @@ std::string Event::GetEventID() // These declarations define the behavours of the base class Module (which does nothing at all) - Module::Module(Server* Me) { } + Module::Module(InspIRCd* Me) : ServerInstance(Me) { } Module::~Module() { } void Module::OnUserConnect(userrec* user) { } void Module::OnUserQuit(userrec* user, const std::string& message) { } -- cgit v1.2.3