1
0
mirror of https://github.com/minetest-mods/irc.git synced 2025-06-29 14:40:36 +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

@ -63,7 +63,8 @@ end)
function irc.sendLocal(message)
for name, _ in pairs(irc.joined_players) do
minetest.chat_send_player(name, message)
minetest.chat_send_player(name,
minetest.colorize(irc.config.chat_color, message))
end
irc.logChat(message)
end