diff options
author | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 01:31:43 +0000 |
---|---|---|
committer | Robin Burchell w00t@inspircd.org <Robin Burchell w00t@inspircd.org@5417fbe8-f217-4b02-8779-1006273d7864> | 2008-11-08 01:31:43 +0000 |
commit | 3dd5c8348692bb60c7626a0e7235fe41b5edc6ff (patch) | |
tree | fca51ab12faf7334ef147370606e8fe08ef767a5 | |
parent | 26cdf257cc864b9ca91e4424e4bc31dc766b2c5d (diff) |
Correct protocol module version - this is 1.2, not 1.1
git-svn-id: http://anope.svn.sourceforge.net/svnroot/anope/trunk@1588 5417fbe8-f217-4b02-8779-1006273d7864
-rw-r--r-- | src/protocol/inspircd12.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/protocol/inspircd12.cpp b/src/protocol/inspircd12.cpp index a1a6b17b8..dad4ccf71 100644 --- a/src/protocol/inspircd12.cpp +++ b/src/protocol/inspircd12.cpp @@ -1,4 +1,4 @@ -/* inspircd 1.1 beta 6+ functions +/* inspircd 1.2 functions * * (C) 2003-2008 Anope Team * Contact us at info@anope.org @@ -71,7 +71,7 @@ int inet_aton(const char *name, struct in_addr *addr) #endif IRCDVar myIrcd[] = { - {"InspIRCd 1.1", /* ircd name */ + {"InspIRCd 1.2", /* ircd name */ "+I", /* Modes used by pseudoclients */ 5, /* Chan Max Symbols */ "-cilmnpstuzACGHKNOQRSV", /* Modes to Remove */ @@ -1320,7 +1320,7 @@ class ProtoInspIRCd : public Module TS6SID = sstrdup(Numeric); - pmodule_ircd_version("InspIRCd 1.1"); + pmodule_ircd_version("InspIRCd 1.2"); pmodule_ircd_cap(myIrcdcap); pmodule_ircd_var(myIrcd); pmodule_ircd_cbmodeinfos(myCbmodeinfos); |