record_protection_violation: fix player name not being passed

master
orwell96 2017-04-07 23:05:10 +02:00
parent e795f51293
commit 4ea222fd6a
3 changed files with 2 additions and 2 deletions

Binary file not shown.

View File

@ -99,7 +99,7 @@ advtrains.register_tracks("default", {
end,
on_receive_fields = function(pos, formname, fields, player)
if advtrains.is_protected(pos, player:get_player_name()) then
minetest.record_protection_violation(pos, name)
minetest.record_protection_violation(pos, player:get_player_name())
return
end
local meta=minetest.get_meta(pos)

View File

@ -35,7 +35,7 @@ minetest.register_craftitem("advtrains_luaautomation:pcnaming",{
if pointed_thing.type=="node" then
local pos=pointed_thing.under
if advtrains.is_protected(pos, pname) then
minetest.record_protection_violation(pos, name)
minetest.record_protection_violation(pos, pname)
return
end
local node=minetest.get_node(pos)