]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - src/modules/m_randquote.cpp
Auto loading of commands as shared objects via dlsym (very lightweight interface...
[user/henk/code/inspircd.git] / src / modules / m_randquote.cpp
index 953a378eb51b8284b8b67bf96746364fb4dc7b75..0bb0be1db1d539fe800f1ad8f4621c488c044bd5 100644 (file)
@@ -19,10 +19,10 @@ using namespace std;
 #include "users.h"
 #include "channels.h"
 #include "modules.h"
-#include "helperfuncs.h"
+
 #include "inspircd.h"
 
-static Server *Srv;
+
 static FileReader *quotes = NULL;
 
 std::string q_file = "";
@@ -34,7 +34,7 @@ std::string suffix = "";
 class cmd_randquote : public command_t
 {
  public:
      cmd_randquote () : command_t("RANDQUOTE", 0, 0)
cmd_randquote (InspIRCd* Instance) : command_t(Instance,"RANDQUOTE", 0, 0)
        {
                this->source = "m_randquote.so";
        }
@@ -83,7 +83,7 @@ class ModuleRandQuote : public Module
                : Module::Module(Me)
        {
                
-               conf = new ConfigReader;
+               conf = new ConfigReader(ServerInstance);
                // Sort the Randomizer thingie..
                srand(time(NULL));
 
@@ -99,7 +99,7 @@ class ModuleRandQuote : public Module
                        throw(e);
                }
 
-               quotes = new FileReader(q_file);
+               quotes = new FileReader(ServerInstance, q_file);
                if(!quotes->Exists())
                {
                        RandquoteException e("m_randquote: QuoteFile not Found!! Please check your config - module will not function.");
@@ -108,8 +108,8 @@ class ModuleRandQuote : public Module
                else
                {
                        /* Hidden Command -- Mode clients assume /quote sends raw data to an IRCd >:D */
-                       mycommand = new cmd_randquote();
-                       Srv->AddCommand(mycommand);
+                       mycommand = new cmd_randquote(ServerInstance);
+                       ServerInstance->AddCommand(mycommand);
                }
        }