From 56a5de4a91750d5fe7944735551094b9f0496e34 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Diego=20Mart=C3=ADnez?= Date: Wed, 28 May 2014 11:59:10 -0300 Subject: [PATCH] Fix typo in connect. This caused bot to fail to connect to servers protected with passwords. Reported by reactor. --- init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/init.lua b/init.lua index 2aa89bd..f281607 100644 --- a/init.lua +++ b/init.lua @@ -80,7 +80,7 @@ function irc:connect() self.conn:connect({ host = self.config.server, port = self.config.port, - pass = self.config.password, + password = self.config.password, timeout = self.config.timeout, secure = self.config.secure })