mirror of
https://github.com/minetest-mods/digilines.git
synced 2025-06-30 07:20:29 +02:00
Don't record a protection violation when players aren't allowed to modify a node (#78)
This commit is contained in:
1
lcd.lua
1
lcd.lua
@ -310,7 +310,6 @@ minetest.register_node("digilines:lcd", {
|
||||
on_receive_fields = function(pos, _, fields, sender)
|
||||
local name = sender:get_player_name()
|
||||
if minetest.is_protected(pos, name) and not minetest.check_player_privs(name, {protection_bypass=true}) then
|
||||
minetest.record_protection_violation(pos, name)
|
||||
return
|
||||
end
|
||||
if (fields.channel) then
|
||||
|
Reference in New Issue
Block a user