From d3165867c3888ad1136e064db2999659b08ff993 Mon Sep 17 00:00:00 2001 From: Griatch Date: Fri, 28 Aug 2009 01:43:45 +0000 Subject: [PATCH] Added IRC connectivity for Evennia. This allows the Evennia server to launch a bot that pipes output from an IRC channel to an Evennia channel. IMC2 and IRC channels mapped to the same channel will also see traffic from each other. New fields in settings.py were added to setup the IRC bot. Added new in-game commands '@imc2chan' and @irc2chan for mapping irc/imc channels to evennia channels; you don't have to use the admin interface anymore. This is a correction commit to add the correct text info; the irc bot was really added in r650. /Griatch --- src/irc/connection.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/irc/connection.py b/src/irc/connection.py index 967c8e13f..73749ea13 100644 --- a/src/irc/connection.py +++ b/src/irc/connection.py @@ -9,7 +9,7 @@ from twisted.internet import protocol from twisted.internet import reactor from src.irc.models import IRCChannelMapping from src import comsys -from src import logger +from src import logger #store all irc channels IRC_CHANNELS = []