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:
@ -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
|
||||
|
Reference in New Issue
Block a user