From aedf2034404d620a840111f28447c16e29769ee4 Mon Sep 17 00:00:00 2001 From: tjnenrtn Date: Sat, 8 Apr 2017 23:47:59 -0400 Subject: [PATCH] Verify mailbox ownership when player takes inventory items --- src/mailbox.lua | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/src/mailbox.lua b/src/mailbox.lua index c7d34a3..7f27af0 100644 --- a/src/mailbox.lua +++ b/src/mailbox.lua @@ -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 -- 2.44.0