Fix typo in connect.

This caused bot to fail to connect to servers protected with passwords.

Reported by reactor.
This commit is contained in:
Diego Martínez 2014-05-28 11:59:10 -03:00
parent 706a6fbe27
commit 56a5de4a91
1 changed files with 1 additions and 1 deletions

View File

@ -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
})