From 3b7c30fefc52ac1ffca33bf92da8133f6c468f39 Mon Sep 17 00:00:00 2001 From: Wuzzy Date: Thu, 31 Aug 2017 23:27:29 +0200 Subject: [PATCH] Reduce fall damage by 80 on hay bale --- mods/ITEMS/mcl_farming/wheat.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mods/ITEMS/mcl_farming/wheat.lua b/mods/ITEMS/mcl_farming/wheat.lua index 1396ec0ab..7c38c06ab 100644 --- a/mods/ITEMS/mcl_farming/wheat.lua +++ b/mods/ITEMS/mcl_farming/wheat.lua @@ -137,7 +137,7 @@ minetest.register_node("mcl_farming:hay_block", { paramtype2 = "facedir", is_ground_content = false, on_place = mcl_util.rotate_axis, - groups = {handy=1, flammable=2, building_block=1}, + groups = {handy=1, flammable=2, building_block=1, fall_damage_add_percent=-80}, sounds = mcl_sounds.node_sound_leaves_defaults(), _mcl_blast_resistance = 2.5, _mcl_hardness = 0.5,