Fix putting items in protected smithing tables

This commit is contained in:
cora 2024-09-23 06:58:19 +02:00 committed by Mikita Wiśniewski
parent d264ba70d8
commit 4f6a95d6a4
1 changed files with 6 additions and 0 deletions

View File

@ -167,6 +167,12 @@ minetest.register_node("mcl_smithing_table:table", {
end, end,
allow_metadata_inventory_put = function(pos, listname, index, stack, player) allow_metadata_inventory_put = function(pos, listname, index, stack, player)
local name = player:get_player_name()
if minetest.is_protected(pos, name) then
minetest.record_protection_violation(pos, name)
return 0
end
local stackname = stack:get_name() local stackname = stack:get_name()
local def = stack:get_definition() local def = stack:get_definition()
if if