mirror of
https://github.com/minetest-mods/technic.git
synced 2024-12-22 05:42:33 +01:00
tile_images --> tiles
This commit is contained in:
parent
2d86ee64e3
commit
71b13ab0e8
@ -111,7 +111,7 @@ end)
|
|||||||
|
|
||||||
minetest.register_node("technic:light", {
|
minetest.register_node("technic:light", {
|
||||||
drawtype = "glasslike",
|
drawtype = "glasslike",
|
||||||
tile_images = {"technic_light.png"},
|
tiles = {"technic_light.png"},
|
||||||
paramtype = "light",
|
paramtype = "light",
|
||||||
groups = {not_in_creative_inventory=1},
|
groups = {not_in_creative_inventory=1},
|
||||||
drop = "",
|
drop = "",
|
||||||
|
@ -21,7 +21,7 @@ minetest.register_node( ":technic:mineral_chromium", {
|
|||||||
|
|
||||||
minetest.register_node( ":technic:mineral_zinc", {
|
minetest.register_node( ":technic:mineral_zinc", {
|
||||||
description = S("Zinc Ore"),
|
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,
|
is_ground_content = true,
|
||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
@ -30,7 +30,7 @@ minetest.register_node( ":technic:mineral_zinc", {
|
|||||||
|
|
||||||
minetest.register_node( ":technic:mineral_lead", {
|
minetest.register_node( ":technic:mineral_lead", {
|
||||||
description = S("Lead Ore"),
|
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,
|
is_ground_content = true,
|
||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
@ -39,7 +39,7 @@ minetest.register_node( ":technic:mineral_lead", {
|
|||||||
|
|
||||||
minetest.register_node( ":technic:mineral_sulfur", {
|
minetest.register_node( ":technic:mineral_sulfur", {
|
||||||
description = S("Sulfur Ore"),
|
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,
|
is_ground_content = true,
|
||||||
groups = {cracky=3},
|
groups = {cracky=3},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
|
Loading…
Reference in New Issue
Block a user