forked from mtcontrib/plantlife_modpack
fix tree fern and giant tree fern crowns being too small
This commit is contained in:
parent
86612336da
commit
d602b08730
|
@ -97,7 +97,7 @@ end
|
||||||
minetest.register_node("ferns:tree_fern_leaves_giant", {
|
minetest.register_node("ferns:tree_fern_leaves_giant", {
|
||||||
description = "Tree Fern Crown (Dicksonia)",
|
description = "Tree Fern Crown (Dicksonia)",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = math.sqrt(8),
|
visual_scale = math.sqrt(64),
|
||||||
wield_scale = {x=0.175, y=0.175, z=0.175},
|
wield_scale = {x=0.175, y=0.175, z=0.175},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
tiles = {"ferns_fern_tree_giant.png"},
|
tiles = {"ferns_fern_tree_giant.png"},
|
||||||
|
|
|
@ -42,7 +42,7 @@ end
|
||||||
minetest.register_node("ferns:tree_fern_leaves", {
|
minetest.register_node("ferns:tree_fern_leaves", {
|
||||||
description = "Tree Fern Crown (Dicksonia)",
|
description = "Tree Fern Crown (Dicksonia)",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = 2,
|
visual_scale = math.sqrt(32),
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
paramtype2 = "facedir",
|
paramtype2 = "facedir",
|
||||||
--tiles = {"[combine:32x32:0,0=top_left.png:0,16=bottom_left.png:16,0=top_right.png:16,16=bottom_right.png"},
|
--tiles = {"[combine:32x32:0,0=top_left.png:0,16=bottom_left.png:16,0=top_right.png:16,16=bottom_right.png"},
|
||||||
|
@ -70,7 +70,7 @@ minetest.register_node("ferns:tree_fern_leaves", {
|
||||||
})
|
})
|
||||||
minetest.register_node("ferns:tree_fern_leaves_02", {
|
minetest.register_node("ferns:tree_fern_leaves_02", {
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = 2,
|
visual_scale = math.sqrt(32),
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
tiles = {"ferns_fern_big.png"},
|
tiles = {"ferns_fern_big.png"},
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user