forked from mtcontrib/moretrees
fixed too-small images for some saplings and cones in inventory
and in world.
This commit is contained in:
parent
881b1b6aab
commit
44a79f96a2
|
@ -97,10 +97,8 @@ for i in ipairs(trees) do
|
||||||
minetest.register_node("moretrees:"..treename.."_sapling", {
|
minetest.register_node("moretrees:"..treename.."_sapling", {
|
||||||
description = treedesc.." Sapling",
|
description = treedesc.." Sapling",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = 1.0,
|
|
||||||
tiles = {"moretrees_"..treename.."_sapling.png"},
|
tiles = {"moretrees_"..treename.."_sapling.png"},
|
||||||
inventory_image = "moretrees_"..treename.."_sapling.png",
|
inventory_image = "moretrees_"..treename.."_sapling.png",
|
||||||
wield_image = "moretrees_"..treename.."_sapling.png",
|
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
selection_box = {
|
selection_box = {
|
||||||
|
@ -115,7 +113,6 @@ for i in ipairs(trees) do
|
||||||
minetest.register_node("moretrees:"..fruit, {
|
minetest.register_node("moretrees:"..fruit, {
|
||||||
description = fruitdesc,
|
description = fruitdesc,
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = 0.8,
|
|
||||||
tiles = { "moretrees_"..fruit..".png" },
|
tiles = { "moretrees_"..fruit..".png" },
|
||||||
inventory_image = "moretrees_"..fruit..".png",
|
inventory_image = "moretrees_"..fruit..".png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
|
@ -138,6 +135,7 @@ minetest.register_node("moretrees:jungletree_sapling", {
|
||||||
description = "Jungle Tree Sapling",
|
description = "Jungle Tree Sapling",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
tiles = {"moretrees_jungletree_sapling.png"},
|
tiles = {"moretrees_jungletree_sapling.png"},
|
||||||
|
inventory_image = "moretrees_jungletree_sapling.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
groups = {snappy=2,dig_immediate=3,flammable=2},
|
groups = {snappy=2,dig_immediate=3,flammable=2},
|
||||||
|
@ -314,6 +312,7 @@ minetest.register_node("moretrees:fir_sapling", {
|
||||||
description = "Fir sapling",
|
description = "Fir sapling",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
tile_images = {"moretrees_fir_sapling.png"},
|
tile_images = {"moretrees_fir_sapling.png"},
|
||||||
|
inventory_image = "moretrees_fir_sapling.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
walkable = false,
|
walkable = false,
|
||||||
groups = {
|
groups = {
|
||||||
|
@ -327,8 +326,8 @@ minetest.register_node("moretrees:fir_sapling", {
|
||||||
minetest.register_node("moretrees:fir_cone", {
|
minetest.register_node("moretrees:fir_cone", {
|
||||||
description = "Fir cone",
|
description = "Fir cone",
|
||||||
drawtype = "plantlike",
|
drawtype = "plantlike",
|
||||||
visual_scale = 0.8,
|
|
||||||
tiles = {"moretrees_fir_cone.png"},
|
tiles = {"moretrees_fir_cone.png"},
|
||||||
|
inventory_image = "moretrees_fir_cone.png",
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
sunlight_propagates = true,
|
sunlight_propagates = true,
|
||||||
walkable = false,
|
walkable = false,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user