Fix deprecated item fiel names

This commit is contained in:
Wuzzy 2017-01-16 13:00:20 +01:00
parent c39e502670
commit 6388eb98f1
5 changed files with 55 additions and 55 deletions

View file

@ -109,7 +109,7 @@ local function register_wall(nodename, name, texture, invtex)
},
drawtype = "nodebox",
is_ground_content = false,
tile_images = {texture},
tiles = {texture},
paramtype = "light",
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1},
drop = nodename,
@ -126,7 +126,7 @@ local function register_wall(nodename, name, texture, invtex)
type = 'fixed',
fixed = {-4/16, -1, -4/16, 4/16, 1, 4/16}
},
tile_images = {texture},
tiles = {texture},
paramtype = "light",
is_ground_content = false,
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1},
@ -143,7 +143,7 @@ local function register_wall(nodename, name, texture, invtex)
type = 'fixed',
fixed = {-4/16, -1, -4/16, 4/16, 1, 4/16}
},
tile_images = {texture},
tiles = {texture},
paramtype = "light",
is_ground_content = false,
groups = {snappy=2,cracky=3,oddly_breakable_by_hand=3,fences=1},
@ -159,7 +159,7 @@ local function register_wall(nodename, name, texture, invtex)
description = name,
paramtype = "light",
is_ground_content = false,
tile_images = {texture},
tiles = {texture},
inventory_image = invtex,
stack_max = 64,
drawtype = "nodebox",