fix syntax

This commit is contained in:
chmodsayshello 2023-04-07 11:58:27 +02:00
parent 786aaf7a6d
commit 4b1cc017a9
1 changed files with 2 additions and 0 deletions

View File

@ -437,6 +437,8 @@ minetest.register_on_player_receive_fields(function(player, formname, fields)
if fields.chatsubmit and fields.chatmessage ~= "" then
if not minetest.check_player_privs(player,"shout") then
minetest.chat_send_player(player:get_player_name(),S("You are missing the 'shout' privilege! It's required in order to talk in chat..."))
return
end
minetest.chat_send_all(minetest.format_chat_message(player:get_player_name(), fields.chatmessage))
end