summaryrefslogtreecommitdiff
path: root/src/modules/m_randquote.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/m_randquote.cpp')
-rw-r--r--src/modules/m_randquote.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modules/m_randquote.cpp b/src/modules/m_randquote.cpp
index 01a6e3270..d3dfc5a45 100644
--- a/src/modules/m_randquote.cpp
+++ b/src/modules/m_randquote.cpp
@@ -39,7 +39,6 @@ void handle_randquote(char** parameters, int pcntl, userrec *user)
char buf[MAXBUF];
fsize = quotes->FileSize();
- srand(time(NULL));
str = quotes->GetLine(rand() % fsize);
sprintf(buf,"NOTICE %s :%s%s%s",user->nick,prefix.c_str(),str.c_str(),suffix.c_str());
@@ -60,6 +59,8 @@ class ModuleRandQuote : public Module
{
Srv = new Server;
conf = new ConfigReader;
+ // Sort the Randomizer thingie..
+ srand(time(NULL));
q_file = conf->ReadValue("randquote","file",0);