forked from minetest-mods/technic
tile_images --> tiles
This commit is contained in:
parent
2d86ee64e3
commit
71b13ab0e8
|
@ -111,7 +111,7 @@ end)
|
|||
|
||||
minetest.register_node("technic:light", {
|
||||
drawtype = "glasslike",
|
||||
tile_images = {"technic_light.png"},
|
||||
tiles = {"technic_light.png"},
|
||||
paramtype = "light",
|
||||
groups = {not_in_creative_inventory=1},
|
||||
drop = "",
|
||||
|
|
|
@ -21,7 +21,7 @@ minetest.register_node( ":technic:mineral_chromium", {
|
|||
|
||||
minetest.register_node( ":technic:mineral_zinc", {
|
||||
description = S("Zinc Ore"),
|
||||
tile_images = { "default_stone.png^technic_mineral_zinc.png" },
|
||||
tiles = { "default_stone.png^technic_mineral_zinc.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky=3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
|
@ -30,7 +30,7 @@ minetest.register_node( ":technic:mineral_zinc", {
|
|||
|
||||
minetest.register_node( ":technic:mineral_lead", {
|
||||
description = S("Lead Ore"),
|
||||
tile_images = { "default_stone.png^technic_mineral_lead.png" },
|
||||
tiles = { "default_stone.png^technic_mineral_lead.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky=3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
|
@ -39,7 +39,7 @@ minetest.register_node( ":technic:mineral_lead", {
|
|||
|
||||
minetest.register_node( ":technic:mineral_sulfur", {
|
||||
description = S("Sulfur Ore"),
|
||||
tile_images = { "default_stone.png^technic_mineral_sulfur.png" },
|
||||
tiles = { "default_stone.png^technic_mineral_sulfur.png" },
|
||||
is_ground_content = true,
|
||||
groups = {cracky=3},
|
||||
sounds = default.node_sound_stone_defaults(),
|
||||
|
|
Loading…
Reference in New Issue
Block a user