Do not crash if the player argument in minetest.handle_node_drops is nil

This commit is contained in:
HybridDog 2020-09-18 17:54:30 +02:00
parent de38b20fa6
commit 34634c9960

View File

@ -378,7 +378,7 @@ and not minetest.settings:get_bool("creative_mode") then
local old_handle_node_drops = minetest.handle_node_drops
function minetest.handle_node_drops(pos, drops, player)
if player.is_fake_player then
if not player or player.is_fake_player then
-- Node Breaker or similar machines should receive items in the
-- inventory
return old_handle_node_drops(pos, drops, player)