Rename mcl_core:dry_shrub to mcl_core:deadbush

This commit is contained in:
Wuzzy 2017-02-11 21:00:42 +01:00
parent 88888760f5
commit b5a4adc2e3
3 changed files with 3 additions and 4 deletions

View file

@ -467,7 +467,7 @@ minetest.register_on_generated(function(minp, maxp, seed)
nn = minetest.get_node({x=x,y=ground_y,z=z}).name
-- If sand, add dry shrub
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
elseif nn == "mcl_core:dirt_with_grass" then