1
0
mirror of https://github.com/anope/anope.git synced 2026-07-04 02:23:12 +02:00

Made our message sources actual clients/servers, and put in a few more default messages for very standard things (KICK etc)

This commit is contained in:
Adam
2012-02-19 20:54:55 -05:00
parent 0ba58d7d0e
commit b84e080463
16 changed files with 305 additions and 343 deletions
+3 -6
View File
@@ -19,8 +19,8 @@ static bool has_chghostmod = false;
static bool has_chgidentmod = false;
#include "inspircd-ts6.h"
IRCDVar myIrcd[] = {
{"InspIRCd 1.2", /* ircd name */
IRCDVar myIrcd = {
"InspIRCd 1.2", /* ircd name */
"+I", /* Modes used by pseudoclients */
1, /* SVSNICK */
1, /* Vhost */
@@ -42,9 +42,6 @@ IRCDVar myIrcd[] = {
"$", /* TLD Prefix for Global */
20, /* Max number of modes we can send per line */
1, /* IRCd sends a SSL users certificate fingerprint */
}
,
{NULL}
};
static bool has_servicesmod = false;
@@ -705,7 +702,7 @@ class ProtoInspIRCd : public Module
{
this->SetAuthor("Anope");
pmodule_ircd_var(myIrcd);
pmodule_ircd_var(&myIrcd);
pmodule_ircd_proto(&this->ircd_proto);
pmodule_ircd_message(&this->ircd_message);