Merge pull request #3 from fluxionary/shared_removal

Shared removal
This commit is contained in:
Sokomine 2023-01-22 22:32:51 +01:00 committed by GitHub
commit 054b9e62a2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 8 additions and 7 deletions

View File

@ -90,7 +90,7 @@ end
chesttools.may_use = function( pos, player )
if( not( player )) then
if not (pos and player and player.is_player and player:is_player() and not player.is_fake_player) then
return false;
end
local name = player:get_player_name();
@ -470,9 +470,10 @@ minetest.register_node( 'chesttools:shared_chest', {
end,
can_dig = function(pos, player)
local meta = minetest.get_meta(pos);
local player_name = (player and player.get_player_name and player:get_player_name()) or ""
local meta = minetest.get_meta(pos)
local inv = meta:get_inventory()
return inv:is_empty("main") and player:get_player_name() == meta:get_string('owner');
return player_name and inv:is_empty("main") and not minetest.is_protected(pos, player_name)
end,
allow_metadata_inventory_move = function(pos, from_list, from_index,