diff options
author | Vince Aggrippino <VAggrippino@users.noreply.github.com> | 2017-06-05 22:52:47 +0800 |
---|---|---|
committer | Vanessa Ezekowitz <vanessaezekowitz@gmail.com> | 2017-06-05 10:52:47 -0400 |
commit | 844e2fad47ddb33519012b2336b30b59a0435300 (patch) | |
tree | 28b4ca2d7516b8f3d5e3625c14ab3140417dfce9 /technic_worldgen | |
parent | e1bb29c338f322017637908e0575f058e8bc52f0 (diff) |
Add the sapling group to rubber_tree_sapling (#366)
Add the sapling group to Rubber Tree Sapling so that it can be used in
Mesecons recipes for glue and blinky plant.
Diffstat (limited to 'technic_worldgen')
-rw-r--r-- | technic_worldgen/rubber.lua | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/technic_worldgen/rubber.lua b/technic_worldgen/rubber.lua index 3307b8b..11da9ca 100644 --- a/technic_worldgen/rubber.lua +++ b/technic_worldgen/rubber.lua @@ -10,7 +10,7 @@ minetest.register_node(":moretrees:rubber_tree_sapling", { wield_image = "technic_rubber_sapling.png", paramtype = "light", walkable = false, - groups = {dig_immediate=3, flammable=2}, + groups = {dig_immediate=3, flammable=2, sapling=1}, sounds = default.node_sound_defaults(), }) @@ -98,4 +98,3 @@ if technic.config:get_bool("enable_rubber_tree_generation") then end end) end - |