mirror of
https://github.com/minetest-mods/item_drop.git
synced 2024-12-22 13:52:29 +01:00
Fix error for 'nil' player in minetest.handle_node_drops (#36)
This commit is contained in:
parent
de38b20fa6
commit
1545f82cb7
2
init.lua
2
init.lua
@ -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)
|
||||
|
Loading…
Reference in New Issue
Block a user