fixed crash

This commit is contained in:
Sokomine 2022-08-25 03:37:01 +02:00
parent 80d4ce0d84
commit eefeb09d8a
1 changed files with 4 additions and 1 deletions

View File

@ -95,11 +95,14 @@ end
chesttools.may_use = function( pos, player )
if( not( player )) then
if( not( player ) or not(pos) or not(pos.x)) then
return false;
end
local name = player:get_player_name();
local meta = minetest.get_meta( pos );
if(not(meta)) then
return false
end
local owner = meta:get_string( 'owner' )
-- the owner can access the chest
if( owner == name or owner == "" ) then