1
0
mirror of https://codeberg.org/minenux/minetest-mod-xdecor synced 2023-10-20 21:43:39 -07:00

Fix cobblewalls descriptions

This commit is contained in:
jp 2015-08-06 16:56:54 +02:00
parent 193e69b577
commit b887a4bd0c

View File

@ -189,7 +189,7 @@ function xwall.register_wall(name, tiles, def)
if def then return end
def = {
description = string.sub(string.gsub(name, "%l", string.upper, 1), 1, -6).." Wall",
description = string.sub(string.gsub(name, "%l", string.upper, 7), 8, -6).." Wall",
textures = {tiles, tiles, tiles, tiles},
sounds = xdecor.stone,
groups = {cracky=3, stone=1, pane=1},