diff options
Diffstat (limited to 'item_drop')
| -rw-r--r-- | item_drop/init.lua | 2 | 
1 files changed, 2 insertions, 0 deletions
diff --git a/item_drop/init.lua b/item_drop/init.lua index db1f2a3..54b617f 100644 --- a/item_drop/init.lua +++ b/item_drop/init.lua @@ -4,6 +4,7 @@ time_pick = 3  if technic.config:getBool("enable_item_pickup") then  	minetest.register_globalstep(function(dtime)  		for _,player in ipairs(minetest.get_connected_players()) do +			if player and player:get_hp() > 0 then  			local pos = player:getpos()  			pos.y = pos.y+0.5  			local inv = player:get_inventory() @@ -26,6 +27,7 @@ if technic.config:getBool("enable_item_pickup") then  					end  				end  			end +			end  		end  	end)  end  | 
