Replace deprecated "tile_images" with "tiles".
This commit is contained in:
parent
a01a5c6736
commit
c5d92139e8
@ -41,7 +41,7 @@ minetest.register_node("fort_spikes:wood_spikes", {
|
||||
description = "Wood spikes",
|
||||
drawtype = "plantlike",
|
||||
visual_scale = 1,
|
||||
tile_images = {"fort_spikes_wood_spikes.png"},
|
||||
tiles = {"fort_spikes_wood_spikes.png"},
|
||||
inventory_image = ("fort_spikes_wood_spikes.png"),
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
@ -62,7 +62,7 @@ minetest.register_node("fort_spikes:broken_wood_spikes", {
|
||||
description = "Broken wood spikes",
|
||||
drawtype = "plantlike",
|
||||
visual_scale = 1,
|
||||
tile_images = {"fort_spikes_broken_wood_spikes.png"},
|
||||
tiles = {"fort_spikes_broken_wood_spikes.png"},
|
||||
inventory_image = ("fort_spikes_broken_wood_spikes.png"),
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
@ -89,7 +89,7 @@ minetest.register_node("fort_spikes:iron_spikes", {
|
||||
description = "Iron spikes",
|
||||
drawtype = "plantlike",
|
||||
visual_scale = 1,
|
||||
tile_images = {"fort_spikes_iron_spikes.png"},
|
||||
tiles = {"fort_spikes_iron_spikes.png"},
|
||||
inventory_image = ("fort_spikes_iron_spikes.png"),
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
@ -110,7 +110,7 @@ minetest.register_node("fort_spikes:broken_iron_spikes", {
|
||||
description = "Broken spikes",
|
||||
drawtype = "plantlike",
|
||||
visual_scale = 1,
|
||||
tile_images = {"fort_spikes_broken_iron_spikes.png"},
|
||||
tiles = {"fort_spikes_broken_iron_spikes.png"},
|
||||
inventory_image = ("fort_spikes_broken_iron_spikes.png"),
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
|
@ -43,7 +43,7 @@ abstract_trees.trees_register_nodes_tree = function(name)
|
||||
description = name.." sapling",
|
||||
drawtype = "plantlike",
|
||||
visual_scale = 1.0,
|
||||
tile_images = { "trees_sapling_"..name..".png" },
|
||||
tiles = { "trees_sapling_"..name..".png" },
|
||||
paramtype = "light",
|
||||
walkable = false,
|
||||
groups = {
|
||||
|
Loading…
x
Reference in New Issue
Block a user