forked from minetest-mods/item_drop
Do not drop items when a Node Breaker digs a node
This commit is contained in:
parent
5611b4d639
commit
fadfbf7e05
8
init.lua
8
init.lua
|
@ -373,7 +373,13 @@ and not minetest.settings:get_bool("creative_mode") then
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
||||||
function minetest.handle_node_drops(pos, drops)
|
local old_handle_node_drops = minetest.handle_node_drops
|
||||||
|
function minetest.handle_node_drops(pos, drops, player)
|
||||||
|
if player.is_fake_player then
|
||||||
|
-- Node Breaker or similar machines should receive items in the
|
||||||
|
-- inventory
|
||||||
|
return old_handle_node_drops(pos, drops, player)
|
||||||
|
end
|
||||||
for i = 1,#drops do
|
for i = 1,#drops do
|
||||||
local item = drops[i]
|
local item = drops[i]
|
||||||
if type(item) == "string" then
|
if type(item) == "string" then
|
||||||
|
|
Loading…
Reference in New Issue
Block a user