From 5775c9147c71c3a110d8106afc281a1a5935219f Mon Sep 17 00:00:00 2001
From: cd2 <cdqwertz@gmail.com>
Date: Sat, 11 Jun 2016 18:50:22 +0200
Subject: [PATCH] Farming: Add negative fall_damage_add_percent to straw

This doubles the fall height without damage to 11 nodes.
---
 mods/farming/nodes.lua | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/mods/farming/nodes.lua b/mods/farming/nodes.lua
index b55a1aaa..c011df1e 100644
--- a/mods/farming/nodes.lua
+++ b/mods/farming/nodes.lua
@@ -89,7 +89,7 @@ minetest.register_node("farming:straw", {
 	description = "Straw",
 	tiles = {"farming_straw.png"},
 	is_ground_content = false,
-	groups = {snappy=3, flammable=4},
+	groups = {snappy=3, flammable=4, fall_damage_add_percent=-30},
 	sounds = default.node_sound_leaves_defaults(),
 })