forked from VoxeLibre/VoxeLibre
Tallgrass and dead bush added to dig_by_piston
This commit is contained in:
parent
0580b14310
commit
0637182697
|
@ -139,8 +139,8 @@ minetest.register_node("mcl_core:deadbush", {
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
buildable_to = true,
|
buildable_to = true,
|
||||||
groups = {handy = 1, shearsy = 1, flammable = 3, attached_node = 1, plant = 1, non_mycelium_plant = 1, dig_by_water = 1,
|
groups = {handy = 1, shearsy = 1, flammable = 3, attached_node = 1, plant = 1, non_mycelium_plant = 1, dig_by_piston = 1,
|
||||||
destroy_by_lava_flow = 1, deco_block = 1, fire_encouragement = 60, fire_flammability = 100},
|
dig_by_water = 1, destroy_by_lava_flow = 1, deco_block = 1, fire_encouragement = 60, fire_flammability = 100},
|
||||||
drop = {
|
drop = {
|
||||||
max_items = 1,
|
max_items = 1,
|
||||||
items = {
|
items = {
|
||||||
|
|
|
@ -128,8 +128,6 @@ local fortune_wheat_seed_drop = {
|
||||||
overwrite = true,
|
overwrite = true,
|
||||||
}
|
}
|
||||||
|
|
||||||
-- CHECKME: How does tall grass behave when pushed by a piston?
|
|
||||||
|
|
||||||
--- Tall Grass ---
|
--- Tall Grass ---
|
||||||
local def_tallgrass = {
|
local def_tallgrass = {
|
||||||
description = S("Tall Grass"),
|
description = S("Tall Grass"),
|
||||||
|
@ -155,7 +153,7 @@ local def_tallgrass = {
|
||||||
groups = {
|
groups = {
|
||||||
handy = 1, shearsy = 1, attached_node = 1, deco_block = 1,
|
handy = 1, shearsy = 1, attached_node = 1, deco_block = 1,
|
||||||
plant = 1, place_flowerlike = 2, non_mycelium_plant = 1,
|
plant = 1, place_flowerlike = 2, non_mycelium_plant = 1,
|
||||||
flammable = 3, fire_encouragement = 60, fire_flammability = 100,
|
flammable = 3, fire_encouragement = 60, fire_flammability = 10, dig_by_piston = 1,
|
||||||
dig_by_water = 1, destroy_by_lava_flow = 1, compostability = 30, grass_palette = 1
|
dig_by_water = 1, destroy_by_lava_flow = 1, compostability = 30, grass_palette = 1
|
||||||
},
|
},
|
||||||
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
sounds = mcl_sounds.node_sound_leaves_defaults(),
|
||||||
|
|
Loading…
Reference in New Issue