1
0
mirror of https://github.com/minetest/minetest_game.git synced 2025-07-04 15:40:23 +02:00

use default.log_player_action

This commit is contained in:
nixnoxus
2022-04-21 15:13:27 +02:00
parent 4e11628982
commit 86a4b7ccb7
4 changed files with 10 additions and 15 deletions

View File

@ -2057,10 +2057,10 @@ local function coral_on_place(itemstack, placer, pointed_thing)
if minetest.is_protected(pos_under, player_name) or
minetest.is_protected(pos_above, player_name) then
minetest.log("action", player_name
.. " tried to place " .. itemstack:get_name()
default.log_player_action(placer,
"tried to place " .. itemstack:get_name()
.. " at protected position "
.. minetest.pos_to_string(pos_under))
, pos_under)
minetest.record_protection_violation(pos_under, player_name)
return itemstack
end
@ -2602,8 +2602,8 @@ local function register_sign(material, desc, def)
minetest.chat_send_player(player_name, S("Text too long"))
return
end
minetest.log("action", player_name .. " wrote \"" .. text ..
"\" to the sign at " .. minetest.pos_to_string(pos))
default.log_player_action(sender, "wrote \"" .. text ..
"\" to the sign", pos)
local meta = minetest.get_meta(pos)
meta:set_string("text", text)