diff options
-rw-r--r-- | data/example.conf | 2 | ||||
-rw-r--r-- | docs/README | 2 | ||||
-rw-r--r-- | src/protocol/inspircd12.cpp | 4 |
3 files changed, 4 insertions, 4 deletions
diff --git a/data/example.conf b/data/example.conf index c372ae17d..2d44fe6d4 100644 --- a/data/example.conf +++ b/data/example.conf @@ -151,7 +151,7 @@ serverinfo * * Supported: * - inspircd11 - * - inspircd12 + * - inspircd12 (also supports InspIRCd 2.0) * - ratbox * - bahamut * - unreal32 diff --git a/docs/README b/docs/README index ca2719dbd..eacb0a5fc 100644 --- a/docs/README +++ b/docs/README @@ -191,7 +191,7 @@ Table of Contents Anope currently works with:
* Bahamut 1.4.27 or later (including 1.8)
- * InspIRCd 1.1 or later (including 1.2)
+ * InspIRCd 1.1, 1.2, or 2.0
* Ratbox 2.0.6 or later
* UnrealIRCd 3.2 or later
diff --git a/src/protocol/inspircd12.cpp b/src/protocol/inspircd12.cpp index 356f6204f..8f3f1703f 100644 --- a/src/protocol/inspircd12.cpp +++ b/src/protocol/inspircd12.cpp @@ -34,7 +34,7 @@ int inet_aton(const char *name, struct in_addr *addr) #endif IRCDVar myIrcd[] = { - {"InspIRCd 1.2", /* ircd name */ + {"InspIRCd 1.2 & 2.0", /* ircd name */ "+I", /* Modes used by pseudoclients */ 5, /* Chan Max Symbols */ "+ao", /* Channel Umode used by Botserv bots */ @@ -1377,7 +1377,7 @@ class ProtoInspIRCd : public Module if (Config.Numeric) TS6SID = sstrdup(Config.Numeric); - pmodule_ircd_version("InspIRCd 1.2"); + pmodule_ircd_version("InspIRCd 1.2 & 2.0"); pmodule_ircd_var(myIrcd); pmodule_ircd_useTSMode(0); |