Minecraft-like flammability blocks

This commit is contained in:
Wuzzy 2017-02-01 13:44:36 +01:00
parent f2798ac11e
commit 05b0978cd5
11 changed files with 51 additions and 51 deletions

View file

@ -10,7 +10,7 @@ minetest.register_node("mcl_farming:potato_1", {
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
},
},
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
sounds = mcl_core.node_sound_leaves_defaults(),
})
@ -26,7 +26,7 @@ minetest.register_node("mcl_farming:potato_2", {
{-0.5, -0.5, -0.5, 0.5, -0.125, 0.5}
},
},
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
sounds = mcl_core.node_sound_leaves_defaults(),
})
@ -43,7 +43,7 @@ minetest.register_node("mcl_farming:potato", {
{ items = {'mcl_farming:potato_item 4'}, rarity = 5 }
}
},
groups = {snappy=3, flammable=2, not_in_creative_inventory=1,dig_by_water=1},
groups = {snappy=3, not_in_creative_inventory=1,dig_by_water=1},
sounds = mcl_core.node_sound_leaves_defaults(),
})