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:
LNJ 2017-06-04 21:52:44 +02:00
parent b1d9fe4416
commit 12ec710b04
4 changed files with 4 additions and 4 deletions

View File

@ -9,7 +9,7 @@ local S, NS = dofile(modpath .. "/intllib.lua")
-- Lapis Lazuli Ore
minetest.register_node("lapis:stone_with_lapis", {
description = S("Lapis Lazuli Ore"),
tiles = {"default_stone.png^mineral_lapislazuli.png"},
tiles = {"default_stone.png^lapis_mineral_lapislazuli.png"},
is_ground_content = true,
groups = {cracky=2},
drop = {
@ -38,13 +38,13 @@ minetest.register_node("lapis:stone_with_lapis", {
-- Lapis Item
minetest.register_craftitem("lapis:lapis", {
description = S("Lapis Lazuli"),
inventory_image = "lapislazuli.png",
inventory_image = "lapis_lapislazuli.png",
})
-- Lapis Block
minetest.register_node("lapis:lapisblock", {
description = S("Lapis Lazuli Block"),
tiles = {"lapislazuli_block.png"},
tiles = {"lapis_lapislazuliblock.png"},
is_ground_content = true,
groups = {cracky = 1, level = 2},
sounds = default.node_sound_stone_defaults(),

View File

Before

Width:  |  Height:  |  Size: 184 B

After

Width:  |  Height:  |  Size: 184 B

View File

Before

Width:  |  Height:  |  Size: 496 B

After

Width:  |  Height:  |  Size: 496 B

View File

Before

Width:  |  Height:  |  Size: 152 B

After

Width:  |  Height:  |  Size: 152 B