Rename texture names
This will make texture packs already supporting this mod, incompatible, but the names were just soo bad, that I had to change them. (This is was my first mod and it's probably my worst)
This commit is contained in:
parent
b1d9fe4416
commit
12ec710b04
8
init.lua
8
init.lua
@ -9,7 +9,7 @@ local S, NS = dofile(modpath .. "/intllib.lua")
|
|||||||
-- Lapis Lazuli Ore
|
-- Lapis Lazuli Ore
|
||||||
minetest.register_node("lapis:stone_with_lapis", {
|
minetest.register_node("lapis:stone_with_lapis", {
|
||||||
description = S("Lapis Lazuli Ore"),
|
description = S("Lapis Lazuli Ore"),
|
||||||
tiles = {"default_stone.png^mineral_lapislazuli.png"},
|
tiles = {"default_stone.png^lapis_mineral_lapislazuli.png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {cracky=2},
|
groups = {cracky=2},
|
||||||
drop = {
|
drop = {
|
||||||
@ -38,15 +38,15 @@ minetest.register_node("lapis:stone_with_lapis", {
|
|||||||
-- Lapis Item
|
-- Lapis Item
|
||||||
minetest.register_craftitem("lapis:lapis", {
|
minetest.register_craftitem("lapis:lapis", {
|
||||||
description = S("Lapis Lazuli"),
|
description = S("Lapis Lazuli"),
|
||||||
inventory_image = "lapislazuli.png",
|
inventory_image = "lapis_lapislazuli.png",
|
||||||
})
|
})
|
||||||
|
|
||||||
-- Lapis Block
|
-- Lapis Block
|
||||||
minetest.register_node("lapis:lapisblock", {
|
minetest.register_node("lapis:lapisblock", {
|
||||||
description = S("Lapis Lazuli Block"),
|
description = S("Lapis Lazuli Block"),
|
||||||
tiles = {"lapislazuli_block.png"},
|
tiles = {"lapis_lapislazuliblock.png"},
|
||||||
is_ground_content = true,
|
is_ground_content = true,
|
||||||
groups = {cracky=1,level=2},
|
groups = {cracky = 1, level = 2},
|
||||||
sounds = default.node_sound_stone_defaults(),
|
sounds = default.node_sound_stone_defaults(),
|
||||||
})
|
})
|
||||||
|
|
||||||
|
Before Width: | Height: | Size: 184 B After Width: | Height: | Size: 184 B |
Before Width: | Height: | Size: 496 B After Width: | Height: | Size: 496 B |
Before Width: | Height: | Size: 152 B After Width: | Height: | Size: 152 B |
Loading…
x
Reference in New Issue
Block a user