summaryrefslogtreecommitdiff
path: root/src/modules
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules')
-rw-r--r--src/modules/cs_appendtopic.cpp2
-rw-r--r--src/modules/cs_enforce.cpp2
-rw-r--r--src/modules/cs_tban.cpp2
-rw-r--r--src/modules/hs_request.cpp2
-rw-r--r--src/modules/m_helpchan.cpp1
-rw-r--r--src/modules/ns_maxemail.cpp2
-rw-r--r--src/modules/os_info.cpp2
7 files changed, 0 insertions, 13 deletions
diff --git a/src/modules/cs_appendtopic.cpp b/src/modules/cs_appendtopic.cpp
index a44e6d1a9..40c1cd374 100644
--- a/src/modules/cs_appendtopic.cpp
+++ b/src/modules/cs_appendtopic.cpp
@@ -19,7 +19,6 @@
#include "module.h"
#define AUTHOR "SGR"
-#define VERSION VERSION_STRING
/* ------------------------------------------------------------
* Name: cs_appendtopic
@@ -143,7 +142,6 @@ class CSAppendTopic : public Module
me = this;
this->SetAuthor(AUTHOR);
- this->SetVersion(VERSION);
this->SetType(SUPPORTED);
this->AddCommand(ChanServ, new CommandCSAppendTopic());
diff --git a/src/modules/cs_enforce.cpp b/src/modules/cs_enforce.cpp
index 271b9da05..a3be24c7a 100644
--- a/src/modules/cs_enforce.cpp
+++ b/src/modules/cs_enforce.cpp
@@ -16,7 +16,6 @@
#include "module.h"
#define AUTHOR "Anope"
-#define VERSION VERSION_STRING
#define LNG_NUM_STRINGS 6
@@ -231,7 +230,6 @@ class CSEnforce : public Module
me = this;
this->SetAuthor(AUTHOR);
- this->SetVersion(VERSION);
this->SetType(SUPPORTED);
this->AddCommand(ChanServ, new CommandCSEnforce());
diff --git a/src/modules/cs_tban.cpp b/src/modules/cs_tban.cpp
index 5a768dc81..88e541ac8 100644
--- a/src/modules/cs_tban.cpp
+++ b/src/modules/cs_tban.cpp
@@ -19,7 +19,6 @@
#include "module.h"
#define AUTHOR "Rob"
-#define VERSION VERSION_STRING
void mySendResponse(User *u, const char *channel, char *mask, const char *time);
@@ -100,7 +99,6 @@ class CSTBan : public Module
this->AddCommand(ChanServ, new CommandCSTBan());
this->SetAuthor(AUTHOR);
- this->SetVersion(VERSION);
this->SetType(SUPPORTED);
const char* langtable_en_us[] = {
diff --git a/src/modules/hs_request.cpp b/src/modules/hs_request.cpp
index 574611f09..05e5969f2 100644
--- a/src/modules/hs_request.cpp
+++ b/src/modules/hs_request.cpp
@@ -18,7 +18,6 @@
#include "module.h"
#define AUTHOR "Rob"
-#define VERSION VERSION_STRING
/* Configuration variables */
int HSRequestMemoUser = 0;
@@ -394,7 +393,6 @@ class HSRequest : public Module
this->AddCommand(HostServ, new CommandHSWaiting());
this->SetAuthor(AUTHOR);
- this->SetVersion(VERSION);
this->SetType(SUPPORTED);
my_load_config();
diff --git a/src/modules/m_helpchan.cpp b/src/modules/m_helpchan.cpp
index 6255d5012..c63703f33 100644
--- a/src/modules/m_helpchan.cpp
+++ b/src/modules/m_helpchan.cpp
@@ -15,7 +15,6 @@ class HelpChannel : public Module
HelpChannel(const std::string &modname, const std::string &creator) : Module(modname, creator)
{
this->SetAuthor("Anope");
- this->SetVersion(VERSION_STRING);
this->SetType(SUPPORTED);
Implementation i[] = { I_OnChannelModeSet, I_OnReload };
diff --git a/src/modules/ns_maxemail.cpp b/src/modules/ns_maxemail.cpp
index 2399dba68..1d89a28e3 100644
--- a/src/modules/ns_maxemail.cpp
+++ b/src/modules/ns_maxemail.cpp
@@ -16,7 +16,6 @@
#include "module.h"
#define AUTHOR "Anope"
-#define VERSION VERSION_STRING
void my_load_config();
void my_add_languages();
@@ -38,7 +37,6 @@ class NSMaxEmail : public Module
me = this;
this->SetAuthor(AUTHOR);
- this->SetVersion(VERSION);
this->SetType(SUPPORTED);
ModuleManager::Attach(I_OnReload, this);
diff --git a/src/modules/os_info.cpp b/src/modules/os_info.cpp
index 38d9c99c5..1b4075f63 100644
--- a/src/modules/os_info.cpp
+++ b/src/modules/os_info.cpp
@@ -19,7 +19,6 @@
#include "module.h"
#define AUTHOR "Rob"
-#define VERSION VERSION_STRING
/* Multi-language stuff */
#define LANG_NUM_STRINGS 10
@@ -200,7 +199,6 @@ class OSInfo : public Module
me = this;
this->SetAuthor(AUTHOR);
- this->SetVersion(VERSION);
this->SetType(SUPPORTED);
this->AddCommand(NickServ, new CommandNSOInfo());