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

@ -8,7 +8,7 @@ function irc.logChat(message)
end
function irc.sendLocal(message)
minetest.chat_send_all(message)
minetest.chat_send_all(minetest.colorize(irc.config.chat_color, message))
irc.logChat(message)
end