Update tile_images

This commit is contained in:
Jat 2012-08-31 12:33:28 +02:00 committed by Perttu Ahola
parent 794c68b32b
commit d3d3e76447
3 changed files with 7 additions and 7 deletions

View File

@ -15,7 +15,7 @@ minetest.register_alias('door_wood', 'doors:door_wood')
minetest.register_node( 'doors:door_wood', { minetest.register_node( 'doors:door_wood', {
description = 'Wooden Door', description = 'Wooden Door',
drawtype = 'signlike', drawtype = 'signlike',
tile_images = { 'door_wood.png' }, tiles = { 'door_wood.png' },
inventory_image = 'door_wood.png', inventory_image = 'door_wood.png',
wield_image = 'door_wood.png', wield_image = 'door_wood.png',
paramtype2 = 'wallmounted', paramtype2 = 'wallmounted',
@ -41,7 +41,7 @@ minetest.register_craft({
minetest.register_node( 'doors:door_wood_a_c', { minetest.register_node( 'doors:door_wood_a_c', {
Description = 'Top Closed Door', Description = 'Top Closed Door',
drawtype = 'signlike', drawtype = 'signlike',
tile_images = { 'door_wood_a.png' }, tiles = { 'door_wood_a.png' },
inventory_image = 'door_wood_a.png', inventory_image = 'door_wood_a.png',
paramtype = 'light', paramtype = 'light',
paramtype2 = 'wallmounted', paramtype2 = 'wallmounted',
@ -55,7 +55,7 @@ minetest.register_node( 'doors:door_wood_a_c', {
minetest.register_node( 'doors:door_wood_b_c', { minetest.register_node( 'doors:door_wood_b_c', {
Description = 'Bottom Closed Door', Description = 'Bottom Closed Door',
drawtype = 'signlike', drawtype = 'signlike',
tile_images = { 'door_wood_b.png' }, tiles = { 'door_wood_b.png' },
inventory_image = 'door_wood_b.png', inventory_image = 'door_wood_b.png',
paramtype = 'light', paramtype = 'light',
paramtype2 = 'wallmounted', paramtype2 = 'wallmounted',
@ -69,7 +69,7 @@ minetest.register_node( 'doors:door_wood_b_c', {
minetest.register_node( 'doors:door_wood_a_o', { minetest.register_node( 'doors:door_wood_a_o', {
Description = 'Top Open Door', Description = 'Top Open Door',
drawtype = 'signlike', drawtype = 'signlike',
tile_images = { 'door_wood_a_r.png' }, tiles = { 'door_wood_a_r.png' },
inventory_image = 'door_wood_a_r.png', inventory_image = 'door_wood_a_r.png',
paramtype = 'light', paramtype = 'light',
paramtype2 = 'wallmounted', paramtype2 = 'wallmounted',
@ -83,7 +83,7 @@ minetest.register_node( 'doors:door_wood_a_o', {
minetest.register_node( 'doors:door_wood_b_o', { minetest.register_node( 'doors:door_wood_b_o', {
Description = 'Bottom Open Door', Description = 'Bottom Open Door',
drawtype = 'signlike', drawtype = 'signlike',
tile_images = { 'door_wood_b_r.png' }, tiles = { 'door_wood_b_r.png' },
inventory_image = 'door_wood_b_r.png', inventory_image = 'door_wood_b_r.png',
paramtype = 'light', paramtype = 'light',
paramtype2 = 'wallmounted', paramtype2 = 'wallmounted',

View File

@ -3,7 +3,7 @@
minetest.register_node("fire:basic_flame", { minetest.register_node("fire:basic_flame", {
description = "Fire", description = "Fire",
drawtype = "glasslike", drawtype = "glasslike",
tile_images = {"fire_basic_flame.png"}, tiles = {"fire_basic_flame.png"},
light_source = 14, light_source = 14,
groups = {igniter=2,dig_immediate=3}, groups = {igniter=2,dig_immediate=3},
drop = '', drop = '',

View File

@ -33,7 +33,7 @@ for _, row in ipairs(wool.dyes) do
-- Node Definition -- Node Definition
minetest.register_node("wool:"..name, { minetest.register_node("wool:"..name, {
description = desc.." Wool", description = desc.." Wool",
tile_images = {"wool_"..name..".png"}, tiles = {"wool_"..name..".png"},
groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3}, groups = {snappy=2,choppy=2,oddly_breakable_by_hand=3,flammable=3},
}) })
if craft_color_group then if craft_color_group then