From 37f6bfaa9a36dcd27056455e4bf6152b63c1ed65 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Mon, 29 May 2017 18:50:57 +0200 Subject: [PATCH] Increase player collect height --- mods/ENTITIES/mcl_item_entity/init.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ENTITIES/mcl_item_entity/init.lua b/mods/ENTITIES/mcl_item_entity/init.lua index 89e08392c..57fdf83e6 100644 --- a/mods/ENTITIES/mcl_item_entity/init.lua +++ b/mods/ENTITIES/mcl_item_entity/init.lua @@ -3,7 +3,7 @@ local item_drop_settings = {} --settings table item_drop_settings.age = 1 --how old an item has to be before collecting item_drop_settings.radius_magnet = 2 --radius of item magnet item_drop_settings.radius_collect = 0.2 --radius of collection -item_drop_settings.player_collect_height = 0.5 --added to their pos y value +item_drop_settings.player_collect_height = 1.0 --added to their pos y value item_drop_settings.collection_safety = false --do this to prevent items from flying away on laggy servers item_drop_settings.random_item_velocity = true --this sets random item velocity if velocity is 0 item_drop_settings.drop_single_item = false --if true, the drop control drops 1 item instead of the entire stack, and sneak+drop drops the stack