mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2024-12-25 01:19:33 +01:00
Use different textures for blackstone top and side
This commit is contained in:
parent
1bf9455065
commit
0c9314fba7
3 changed files with 1 additions and 1 deletions
|
@ -45,7 +45,7 @@ local alldirs = {{x=0,y=0,z=1}, {x=1,y=0,z=0}, {x=0,y=0,z=-1}, {x=-1,y=0,z=0}, {
|
||||||
|
|
||||||
minetest.register_node("mcl_blackstone:blackstone", {
|
minetest.register_node("mcl_blackstone:blackstone", {
|
||||||
description = S("Blackstone"),
|
description = S("Blackstone"),
|
||||||
tiles = {"mcl_blackstone.png"},
|
tiles = {"mcl_blackstone_top.png", "mcl_blackstone_top.png", "mcl_blackstone_side.png"},
|
||||||
sounds = mcl_sounds.node_sound_stone_defaults(),
|
sounds = mcl_sounds.node_sound_stone_defaults(),
|
||||||
is_ground_content = false,
|
is_ground_content = false,
|
||||||
groups = {cracky = 3, pickaxey=2, material_stone=1},
|
groups = {cracky = 3, pickaxey=2, material_stone=1},
|
||||||
|
|
Before Width: | Height: | Size: 1.6 KiB After Width: | Height: | Size: 1.6 KiB |
BIN
mods/ITEMS/mcl_blackstone/textures/mcl_blackstone_top.png
Normal file
BIN
mods/ITEMS/mcl_blackstone/textures/mcl_blackstone_top.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 1.6 KiB |
Loading…
Reference in a new issue