mirror of
https://github.com/minetest-mods/irc.git
synced 2024-12-27 17:20:20 +01:00
Fix typo in connect.
This caused bot to fail to connect to servers protected with passwords. Reported by reactor.
This commit is contained in:
parent
706a6fbe27
commit
56a5de4a91
2
init.lua
2
init.lua
@ -80,7 +80,7 @@ function irc:connect()
|
|||||||
self.conn:connect({
|
self.conn:connect({
|
||||||
host = self.config.server,
|
host = self.config.server,
|
||||||
port = self.config.port,
|
port = self.config.port,
|
||||||
pass = self.config.password,
|
password = self.config.password,
|
||||||
timeout = self.config.timeout,
|
timeout = self.config.timeout,
|
||||||
secure = self.config.secure
|
secure = self.config.secure
|
||||||
})
|
})
|
||||||
|
Loading…
Reference in New Issue
Block a user