make nether mushroom rotation random

This commit is contained in:
cora 2022-05-27 02:06:55 +02:00
parent 1c3a6f8a19
commit 06fdfd2e63
1 changed files with 2 additions and 2 deletions

View File

@ -6,11 +6,11 @@ local modpath = minetest.get_modpath(modname)
-- adapted for mcl2 by cora
local function generate_warped_tree(pos)
minetest.place_schematic(vector.offset(pos,-2,0,-2),modpath.."/schematics/warped_mushroom.mts")
minetest.place_schematic(vector.offset(pos,-2,0,-2),modpath.."/schematics/warped_mushroom.mts","random")
end
function generate_crimson_tree(pos)
minetest.place_schematic(vector.offset(pos,-2,0,-2),modpath.."/schematics/crimson_mushroom.mts")
minetest.place_schematic(vector.offset(pos,-2,0,-2),modpath.."/schematics/crimson_mushroom.mts","random")
end
minetest.register_node("mcl_crimson:warped_fungus", {