diff --git a/mods/other/random_messages/init.lua b/mods/other/random_messages/init.lua index 0fe0d5c..b645452 100644 --- a/mods/other/random_messages/init.lua +++ b/mods/other/random_messages/init.lua @@ -79,7 +79,7 @@ end function random_messages.display_message(message_number) local msg = random_messages.messages[message_number] or message_number if msg then - minetest.chat_send_all(msg) + minetest.chat_send_all(minetest.colorize("#808080", msg)) end end