From 721572ac4a16193b269615b3efd55255bb00d613 Mon Sep 17 00:00:00 2001 From: Griatch Date: Sun, 12 Feb 2017 01:57:58 +0100 Subject: [PATCH] Remove some debug output. --- evennia/players/bots.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/evennia/players/bots.py b/evennia/players/bots.py index c89c5c0856..3bf65211c3 100644 --- a/evennia/players/bots.py +++ b/evennia/players/bots.py @@ -300,7 +300,6 @@ class IRCBot(Bot): elif kwargs["type"] == "privmsg": # A private message to the bot - a command. user = kwargs["user"] - print ("Private bot message received from %s: %s" % (user, txt)) if txt.lower().startswith("who"): # return server WHO list (abbreviated for IRC) @@ -319,7 +318,7 @@ class IRCBot(Bot): text = "Who list (online/idle): %s" % ", ".join(whos) elif txt.lower().startswith("about"): # some bot info - text = "This is an Evennia IRC bot connecting from the game '%s'." % settings.SERVERNAME + text = "This is an Evennia IRC bot connecting from '%s'." % settings.SERVERNAME else: text = "I understand 'who' and 'about'" super(IRCBot, self).msg(privmsg=((text,), {"user":user}))