Used colored chat messages in various mods

This commit is contained in:
Anand S 2018-04-06 15:50:35 +05:30 committed by rubenwardy
parent 0bca42e392
commit ccd40285f0
4 changed files with 4 additions and 4 deletions

View file

@ -64,7 +64,7 @@ minetest.register_chatcommand("report", {
local toname = player:get_player_name()
if minetest.check_player_privs(toname, {kick = true, ban = true}) then
table.insert(mods, toname)
minetest.chat_send_player(toname, "-!- " .. name .. " reported: " .. param)
minetest.chat_send_player(toname, minetest.colorize(#FFFF00,"-!- " .. name .. " reported: " .. param))
end
end