1
0
mirror of https://github.com/minetest-mods/irc.git synced 2025-06-29 22:50:32 +02:00

Print reconnect interval, clean up reconnect comment.

Follows #23
This commit is contained in:
Auke Kok
2016-05-21 22:43:14 -07:00
parent 03edbd29ed
commit f98282818d
2 changed files with 3 additions and 3 deletions

View File

@ -113,8 +113,8 @@ function irc:connect()
end)
if not good then
minetest.log("error", ("IRC: Connection error: %s: %s -- Reconnecting in ten minutes...")
:format(self.config.server, message))
minetest.log("error", ("IRC: Connection error: %s: %s -- Reconnecting in %d seconds...")
:format(self.config.server, message, self.config.reconnect))
minetest.after(self.config.reconnect, function() self:connect() end)
return
end