forked from VoxeLibre/VoxeLibre
Merge pull request 'Remove deprecated usages of image property in tile defs' (#3582) from dumpnodes into master
Reviewed-on: MineClone2/MineClone2#3582 Reviewed-by: PrairieWind <prairiewind@noreply.git.minetest.land>
This commit is contained in:
commit
114e640132
|
@ -45,7 +45,7 @@ for i=0,4 do
|
||||||
description=S("Respawn Anchor"),
|
description=S("Respawn Anchor"),
|
||||||
tiles = {
|
tiles = {
|
||||||
{
|
{
|
||||||
image="respawn_anchor_top_on.png^[noalpha",
|
name = "respawn_anchor_top_on.png^[noalpha",
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
||||||
},
|
},
|
||||||
"respawn_anchor_bottom.png",
|
"respawn_anchor_bottom.png",
|
||||||
|
|
|
@ -331,7 +331,7 @@ minetest.register_node("mcl_crimson:warped_hyphae", {
|
||||||
"mcl_crimson_warped_hyphae.png",
|
"mcl_crimson_warped_hyphae.png",
|
||||||
"mcl_crimson_warped_hyphae.png",
|
"mcl_crimson_warped_hyphae.png",
|
||||||
{
|
{
|
||||||
image="mcl_crimson_warped_hyphae_side.png",
|
name = "mcl_crimson_warped_hyphae_side.png",
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -370,7 +370,7 @@ minetest.register_node("mcl_crimson:warped_hyphae_bark", {
|
||||||
_doc_items_longdesc = S("This is a decorative block surrounded by the bark of an hyphae."),
|
_doc_items_longdesc = S("This is a decorative block surrounded by the bark of an hyphae."),
|
||||||
tiles = {
|
tiles = {
|
||||||
{
|
{
|
||||||
image="mcl_crimson_warped_hyphae_side.png",
|
name = "mcl_crimson_warped_hyphae_side.png",
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -525,7 +525,7 @@ minetest.register_node("mcl_crimson:crimson_hyphae", {
|
||||||
"mcl_crimson_crimson_hyphae.png",
|
"mcl_crimson_crimson_hyphae.png",
|
||||||
"mcl_crimson_crimson_hyphae.png",
|
"mcl_crimson_crimson_hyphae.png",
|
||||||
{
|
{
|
||||||
image="mcl_crimson_crimson_hyphae_side.png",
|
name = "mcl_crimson_crimson_hyphae_side.png",
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -545,7 +545,7 @@ minetest.register_node("mcl_crimson:crimson_hyphae_bark", {
|
||||||
_doc_items_longdesc = S("This is a decorative block surrounded by the bark of an hyphae."),
|
_doc_items_longdesc = S("This is a decorative block surrounded by the bark of an hyphae."),
|
||||||
tiles = {
|
tiles = {
|
||||||
{
|
{
|
||||||
image="mcl_crimson_crimson_hyphae_side.png",
|
name = "mcl_crimson_crimson_hyphae_side.png",
|
||||||
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
animation={type="vertical_frames", aspect_w=16, aspect_h=16, length=2.0}
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in New Issue