From: cd2 Date: Sat, 11 Jun 2016 16:50:22 +0000 (+0200) Subject: Farming: Add negative fall_damage_add_percent to straw X-Git-Tag: 0.4.15~175 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=5775c9147c71c3a110d8106afc281a1a5935219f;p=oweals%2Fminetest_game.git Farming: Add negative fall_damage_add_percent to straw This doubles the fall height without damage to 11 nodes. --- 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(), })