summaryrefslogtreecommitdiff
path: root/lua/api.lua
diff options
context:
space:
mode:
authorgpcf <gabriel@gpcf.eu>2017-10-16 19:11:07 +0200
committerLNJ <git@lnj.li>2017-10-16 19:11:07 +0200
commit245e0a6e97b0e6419b3e50438999f625fdeb681c (patch)
tree8a20ebd26dadd9a570b004bb8b8ce7e67de8f1e8 /lua/api.lua
parent60c1dcc138b2eed55aa71de2e42a6092c93cf673 (diff)
Forbid stealing drawer upgrades (#11)
Diffstat (limited to 'lua/api.lua')
-rwxr-xr-xlua/api.lua5
1 files changed, 5 insertions, 0 deletions
diff --git a/lua/api.lua b/lua/api.lua
index 736a8fb..ad32a3f 100755
--- a/lua/api.lua
+++ b/lua/api.lua
@@ -144,6 +144,10 @@ function drawers.drawer_on_dig(pos, node, player)
end
function drawers.drawer_allow_metadata_inventory_put(pos, listname, index, stack, player)
+ if core.is_protected(pos,player:get_player_name()) then
+ core.record_protection_violation(pos,player:get_player_name())
+ return 0
+ end
if listname ~= "upgrades" then
return 0
end
@@ -198,6 +202,7 @@ function drawers.register_drawer(name, def)
def.on_destruct = drawers.drawer_on_destruct
def.on_dig = drawers.drawer_on_dig
def.allow_metadata_inventory_put = drawers.drawer_allow_metadata_inventory_put
+ def.allow_metadata_inventory_take = drawers.drawer_allow_metadata_inventory_put
def.on_metadata_inventory_put = drawers.add_drawer_upgrade
def.on_metadata_inventory_take = drawers.remove_drawer_upgrade