1
0
mirror of https://github.com/anope/anope.git synced 2026-07-03 05:13:14 +02:00

Mark the new commands/ modules as CORE and fixed a typo in the example.conf

This commit is contained in:
Adam
2011-08-05 06:18:38 -04:00
parent e66063e630
commit 5e18a7292b
11 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
# Only install example.chk and example.conf from this directory
# NOTE: I would've had this just find all files in the directory, but that would include files not needed (like this file)
set(DATA example.chk commands.example.conf example.conf modules.example.conf mysql/tables.sql)
set(DATA example.chk tables.sql botserv.example.conf example.conf hostserv.example.conf modules.example.conf operserv.example.conf chanserv.example.conf global.example.conf memoserv.example.conf nickserv.example.conf)
install(FILES ${DATA}
DESTINATION data
)
+1 -1
View File
@@ -494,7 +494,7 @@ options
include
{
type = "file"
name = "botserv.example.comf"
name = "botserv.example.conf"
}
/*
+1 -1
View File
@@ -105,7 +105,7 @@ class CSAppendTopic : public Module
CommandCSAppendTopic commandcsappendtopic;
public:
CSAppendTopic(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
CSAppendTopic(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcsappendtopic(this)
{
this->SetAuthor("SGR");
+1 -1
View File
@@ -203,7 +203,7 @@ class CSEnforce : public Module
CommandCSEnforce commandcsenforce;
public:
CSEnforce(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
CSEnforce(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcsenforce(this)
{
this->SetAuthor("Anope");
+1 -1
View File
@@ -161,7 +161,7 @@ class CSEntryMessage : public Module
CommandEntryMessage commandentrymsg;
public:
CSEntryMessage(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED), commandentrymsg(this)
CSEntryMessage(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE), commandentrymsg(this)
{
this->SetAuthor("Anope");
+1 -1
View File
@@ -54,7 +54,7 @@ class CSSetMisc : public Module
CommandCSSASetMisc commandcssasetmisc;
public:
CSSetMisc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
CSSetMisc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcssetmisc(this), commandcssasetmisc(this)
{
this->SetAuthor("Anope");
+1 -1
View File
@@ -51,7 +51,7 @@ class CSSync : public Module
{
CommandCSSync commandcssync;
public:
CSSync(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
CSSync(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcssync(this)
{
this->SetAuthor("Anope");
+1 -1
View File
@@ -102,7 +102,7 @@ class CSTBan : public Module
CommandCSTBan commandcstban;
public:
CSTBan(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
CSTBan(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandcstban(this)
{
this->SetAuthor("Anope");
+1 -1
View File
@@ -301,7 +301,7 @@ class HSRequest : public Module
CommandHSWaiting commandhswaiting;
public:
HSRequest(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
HSRequest(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandhsrequest(this), commandhsactive(this), commandhsreject(this), commandhswaiting(this)
{
this->SetAuthor("Anope");
+1 -1
View File
@@ -70,7 +70,7 @@ class NSSetMisc : public Module
CommandNSSASetMisc commandnssasetmisc;
public:
NSSetMisc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED),
NSSetMisc(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE),
commandnssetmisc(this), commandnssasetmisc(this)
{
this->SetAuthor("Anope");
+1 -1
View File
@@ -335,7 +335,7 @@ class OSDefcon : public Module
}
public:
OSDefcon(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, SUPPORTED), session_service("session"), akills("xlinemanager/sgline"), commandosdefcon(this)
OSDefcon(const Anope::string &modname, const Anope::string &creator) : Module(modname, creator, CORE), session_service("session"), akills("xlinemanager/sgline"), commandosdefcon(this)
{
this->SetAuthor("Anope");