Fix bottlebrush orchid registration

master
vlapsley 2017-09-25 22:24:40 +10:00
parent 462e77cfd9
commit 9b132dc743
2 changed files with 1 additions and 3 deletions

View File

@ -249,5 +249,3 @@ minetest.register_node("flowers:waterlily", {
end
})
-- Aliases for schematic nodes
minetest.register_alias("default:dirt", "default:dirt")

View File

@ -337,7 +337,7 @@ if Bottlebrush_Orchid == true then
abstract_trunks.grow_bottlebrush_orchid = function(pos)
local on_ground = {x=pos.x, y=pos.y+1, z=pos.z}
minetest.set_node(on_ground, {name="base:bottlebrush_orchid", param2=math.random(0,3)})
minetest.set_node(on_ground, {name="flowers:bottlebrush_orchid", param2=math.random(0,3)})
end