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

Make username and realname configurable.

This commit is contained in:
texmex
2017-06-15 00:55:28 +02:00
committed by Diego Martínez
parent 070eb51236
commit f57bdba5e9
2 changed files with 4 additions and 2 deletions

View File

@ -137,8 +137,8 @@ function irc.connect()
end
irc.conn = irc.lib.new({
nick = irc.config.nick,
username = "Minetest",
realname = "Minetest",
username = irc.config.username,
realname = irc.config.realname,
})
irc.doHook(irc.conn)