Update init.lua

master
zmv7 2022-02-26 21:24:26 +05:00 committed by GitHub
parent c096f721cf
commit a7a5b3709e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -4,7 +4,7 @@ minetest.register_chatcommand("ssay", {
params = "<message>",
privs = {unisay=true},
func = function(name, param)
minetest.chat_send_all(minetest.colorize("#F00","server")..": "..param)
minetest.chat_send_all(minetest.colorize("#F00","[Server]")..": "..param)
end,
})