diff options
author | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-01-20 14:55:08 +0100 |
---|---|---|
committer | Gabriel Pérez-Cerezo <gabriel@gpcf.eu> | 2018-01-20 14:55:08 +0100 |
commit | 35985b7dd16bd070940fe0bccf3ea9c54dae1a9f (patch) | |
tree | e32c09eb845eb24dca0124e3446f3e6b7f677426 /lua/api.lua | |
parent | 28a3a3ad1a02ed59bd825bf96fd7925c9110ada9 (diff) |
Fixed bug: drawers cloned items when dug without permission
Diffstat (limited to 'lua/api.lua')
-rwxr-xr-x | lua/api.lua | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lua/api.lua b/lua/api.lua index 740e33e..d12a17c 100755 --- a/lua/api.lua +++ b/lua/api.lua @@ -100,7 +100,10 @@ function drawers.drawer_on_dig(pos, node, player) if core.registered_nodes[node.name] then drawerType = core.registered_nodes[node.name].groups.drawer end - + if core.is_protected(pos,player:get_player_name()) then + core.record_protection_violation(pos,player:get_player_name()) + return 0 + end local meta = core.get_meta(pos) local k = 1 |