1
0
mirror of https://github.com/minetest-mods/irc.git synced 2025-06-30 07:00:33 +02:00

Add support for configurable coloring of IRC messages in-game

IRC channel messages are colored green by default
IRC PMs are colored purple by default
This commit is contained in:
Anand S
2018-09-09 21:38:02 +05:30
committed by sofar
parent c9c57a6f93
commit b4fbccd64a
4 changed files with 8 additions and 5 deletions

View File

@ -51,7 +51,8 @@ function irc.bot_command(msg, text)
return
end
minetest.chat_send_player(player_to,
"PM from "..msg.user.nick.."@IRC: "..message, false)
minetest.colorize(irc.config.pm_color,
"PM from "..msg.user.nick.."@IRC: "..message, false))
irc.reply("Message sent!")
return
end