add glowstone veins to the primordial layer, limit fire so the jungles don't become infernos

This commit is contained in:
FaceDeer
2020-11-04 18:27:26 -07:00
parent e6ebf1a14d
commit 5847fa74fc
3 changed files with 68 additions and 2 deletions

View File

@ -274,7 +274,7 @@ minetest.register_node("df_primordial_items:plant_matter", {
tiles = {"dfcaverns_jungle_plant_matter_01.png"},
is_ground_content = false,
paramtype = "light",
groups = {crumbly = 3, soil = 1},
groups = {crumbly = 3, soil = 1, flammable = 1},
sounds = default.node_sound_dirt_defaults(),
on_timer = function(pos, elapsed)
if elapsed > 130 then
@ -297,7 +297,7 @@ minetest.register_node("df_primordial_items:packed_roots", {
tiles = {"dfcaverns_jungle_plant_packed_roots_01.png"},
paramtype2 = "facedir",
is_ground_content = false,
groups = {choppy = 2, oddly_breakable_by_hand = 2},
groups = {choppy = 2, oddly_breakable_by_hand = 2, flammable = 2},
sounds = default.node_sound_wood_defaults(),
})