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:
+1
-1
@@ -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
@@ -494,7 +494,7 @@ options
|
||||
include
|
||||
{
|
||||
type = "file"
|
||||
name = "botserv.example.comf"
|
||||
name = "botserv.example.conf"
|
||||
}
|
||||
|
||||
/*
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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");
|
||||
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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");
|
||||
|
||||
@@ -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");
|
||||
|
||||
|
||||
Reference in New Issue
Block a user