mirror of
https://github.com/sys4-fr/server-nalc.git
synced 2024-11-16 15:30:30 +01:00
allow admin to look in locked connected chest
This commit is contained in:
parent
1d4f084f17
commit
0900a41e11
|
@ -209,7 +209,7 @@ chest_locked.on_metadata_inventory_take = function(pos, _, _, _, player)
|
|||
end
|
||||
chest_locked.on_rightclick = function(pos, _, clicker)
|
||||
local meta = minetest.get_meta(pos)
|
||||
if clicker:get_player_name() == meta:get_string("owner") then
|
||||
if clicker:get_player_name() == meta:get_string("owner") or clicker:get_player_name() == minetest.setting_get("name") then
|
||||
minetest.show_formspec(
|
||||
clicker:get_player_name(),
|
||||
"connected_chests:chest_locked_left",
|
||||
|
|
Loading…
Reference in New Issue
Block a user