forked from Mineclonia/Mineclonia
Rename mcl_core:dry_shrub to mcl_core:deadbush
This commit is contained in:
parent
88888760f5
commit
b5a4adc2e3
|
@ -467,7 +467,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
|
||||||
nn = minetest.get_node({x=x,y=ground_y,z=z}).name
|
nn = minetest.get_node({x=x,y=ground_y,z=z}).name
|
||||||
-- If sand, add dry shrub
|
-- If sand, add dry shrub
|
||||||
if nn == "mcl_core:sand" then
|
if nn == "mcl_core:sand" then
|
||||||
minetest.set_node(p,{name="mcl_core:dry_shrub"})
|
minetest.set_node(p,{name="mcl_core:deadbush"})
|
||||||
|
|
||||||
-- If dirt with grass, add grass
|
-- If dirt with grass, add grass
|
||||||
elseif nn == "mcl_core:dirt_with_grass" then
|
elseif nn == "mcl_core:dirt_with_grass" then
|
||||||
|
|
|
@ -1318,7 +1318,7 @@ minetest.register_node("mcl_core:obsidian", {
|
||||||
groups = {cracky=4,level=2,oddly_breakable_by_hand=4,building_block=1},
|
groups = {cracky=4,level=2,oddly_breakable_by_hand=4,building_block=1},
|
||||||
})
|
})
|
||||||
|
|
||||||
minetest.register_node("mcl_core:dry_shrub", {
|
minetest.register_node("mcl_core:deadbush", {
|
||||||
description = "Dead Bush",
|
description = "Dead Bush",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = 1.0,
|
visual_scale = 1.0,
|
||||||
|
|
|
@ -12,14 +12,13 @@ local flowers = {
|
||||||
{"oxeye_daisy", "mcl_flowers:oxeye_daisy", "Oxeye Daisy Flower Pot"},
|
{"oxeye_daisy", "mcl_flowers:oxeye_daisy", "Oxeye Daisy Flower Pot"},
|
||||||
{"mushroom_brown", "mcl_farming:mushroom_brown", "Brown Mushroom Flower Pot"},
|
{"mushroom_brown", "mcl_farming:mushroom_brown", "Brown Mushroom Flower Pot"},
|
||||||
{"mushroom_red", "mcl_farming:mushroom_red", "Red Mushroom Flower Pot"},
|
{"mushroom_red", "mcl_farming:mushroom_red", "Red Mushroom Flower Pot"},
|
||||||
{"dry_shrub", "mcl_core:dry_shrub", "Dead Bush Flower Pot"},
|
|
||||||
{"sapling", "mcl_core:sapling", "Oak Sapling Flower Pot"},
|
{"sapling", "mcl_core:sapling", "Oak Sapling Flower Pot"},
|
||||||
{"acaciasapling", "mcl_core:acaciasapling", "Acacia Sapling Flower Pot"},
|
{"acaciasapling", "mcl_core:acaciasapling", "Acacia Sapling Flower Pot"},
|
||||||
{"junglesapling", "mcl_core:junglesapling", "Jungle Sapling Flower Pot"},
|
{"junglesapling", "mcl_core:junglesapling", "Jungle Sapling Flower Pot"},
|
||||||
{"darksapling", "mcl_core:darksapling", "Dark Oak Sapling Flower Pot"},
|
{"darksapling", "mcl_core:darksapling", "Dark Oak Sapling Flower Pot"},
|
||||||
{"sprucesapling", "mcl_core:sprucesapling", "Spruce Sapling Flower Pot"},
|
{"sprucesapling", "mcl_core:sprucesapling", "Spruce Sapling Flower Pot"},
|
||||||
{"birchsapling", "mcl_core:birchsapling", "Birch Sapling Flower Pot"},
|
{"birchsapling", "mcl_core:birchsapling", "Birch Sapling Flower Pot"},
|
||||||
{"dry_shrub", "mcl_core:dry_shrub", "Dead Bush Flower Pot"},
|
{"deadbush", "mcl_core:deadbush", "Dead Bush Flower Pot"},
|
||||||
{"fern", "mcl_flowers:fern", "Fern Flower Pot"},
|
{"fern", "mcl_flowers:fern", "Fern Flower Pot"},
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue