Skip to content
Snippets Groups Projects
Commit 787ba258 authored by kilbith's avatar kilbith Committed by GitHub
Browse files

Merge pull request #78 from tjnenrtn/master

Verify mailbox ownership when player takes inventory items
parents c64ea477 aedf2034
No related branches found
No related tags found
No related merge requests found
......@@ -133,6 +133,19 @@ function mailbox.on_put(pos, listname, _, stack, player)
end
end
function mailbox.allow_take(pos, listname, index, stack, player)
local meta = minetest.get_meta(pos)
if player:get_player_name() ~= meta:get_string("owner") then
return 0
end
return stack:get_count()
end
function mailbox.allow_move(pos)
return 0
end
xdecor.register("mailbox", {
description = "Mailbox",
tiles = {"xdecor_mailbox_top.png", "xdecor_mailbox_bottom.png",
......@@ -142,6 +155,8 @@ xdecor.register("mailbox", {
on_rotate = screwdriver.rotate_simple,
can_dig = mailbox.dig,
on_rightclick = mailbox.rightclick,
allow_metadata_inventory_take = mailbox.allow_take,
allow_metadata_inventory_move = mailbox.allow_move,
on_metadata_inventory_put = mailbox.on_put,
allow_metadata_inventory_put = mailbox.put,
after_place_node = mailbox.after_place_node
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment