projects
/
oweals
/
minetest_game.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ba1ae07
)
Farming: Add negative fall_damage_add_percent to straw
author
cd2
<cdqwertz@gmail.com>
Sat, 11 Jun 2016 16:50:22 +0000
(18:50 +0200)
committer
paramat
<mat.gregory@virginmedia.com>
Fri, 17 Jun 2016 22:43:41 +0000
(23:43 +0100)
This doubles the fall height without damage to 11 nodes.
mods/farming/nodes.lua
patch
|
blob
|
history
diff --git
a/mods/farming/nodes.lua
b/mods/farming/nodes.lua
index b55a1aaa62589c2cb1104fea4bba13ab2b9886d6..c011df1e657d7625424a5484ae8cbcfd2ce3a642 100644
(file)
--- 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(),
})