simplified a statement

This commit is contained in:
Jonathan Raphael Joachim Kolberg 2013-07-24 14:59:05 +02:00 committed by hdastwb
parent d8ec3f8bbe
commit 55caa109c9
1 changed files with 1 additions and 4 deletions

View File

@ -73,8 +73,5 @@ def_on_metadata_inventory_take = function(pos, listname, index, stack, player)
end
function has_locked_chest_privilege(meta, player)
if player:get_player_name() ~= meta:get_string("owner") then
return false
end
return true
return player:get_player_name() == meta:get_string("owner")
end