1
0
mirror of https://github.com/sys4-fr/server-nalc.git synced 2025-12-21 09:05:34 +01:00

[automappercolors & ...] Replace tile_images fields

This commit is contained in:
LeMagnesium
2015-10-30 11:46:00 +01:00
parent baf6efa366
commit c29721e80e
7 changed files with 19 additions and 19 deletions

View File

@@ -64,7 +64,7 @@ minetest.register_abm(
-- Nodes
minetest.register_node("bobblocks:trap_grass", {
description = "Trap Grass",
tile_images = {"default_grass.png"},
tiles = {"default_grass.png"},
paramtype2 = "facedir",
legacy_facedir_simple = true,
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3},
@@ -77,7 +77,7 @@ local function spikenode(name, desc, texture, drop, groups, drawtype)
minetest.register_node("bobblocks:trap_"..name, {
description = desc,
drawtype = drawtype,
tile_images = {"bobblocks_"..texture..".png"},
tiles = {"bobblocks_"..texture..".png"},
inventory_image = ("bobblocks_"..texture..".png"),
paramtype = "light",
walkable = false,
@@ -104,7 +104,7 @@ minetest.register_node("bobblocks:spike_major_reverse", {
description = "Trap Spike Major Reverse",
drawtype = "plantlike",
visual_scale = 1,
tile_images = {"bobblocks_majorspike_reverse.png"},
tiles = {"bobblocks_majorspike_reverse.png"},
inventory_image = ("bobblocks_majorspike_reverse.png"),
paramtype = "light",
walkable = false,