mirror of
https://git.minetest.land/VoxeLibre/VoxeLibre.git
synced 2025-01-12 10:09:34 +01:00
Fix tabulation mistake and some small changes
This commit is contained in:
parent
cfd53956f7
commit
576bbde2e6
1 changed files with 25 additions and 9 deletions
|
@ -57,7 +57,7 @@ mcl_copper.copper_descs = {
|
|||
mcl_copper.copper_longdescs = {
|
||||
["block"] = {
|
||||
S("A block of copper is mostly a decorative block."),
|
||||
S("Exposed copper is a decorative block."),
|
||||
S("Exposed copper is a decorative block."),
|
||||
S("Weathered copper is a decorative block."),
|
||||
S("Oxidized copper is a decorative block.")
|
||||
},
|
||||
|
@ -116,28 +116,44 @@ mcl_copper.stairs_subnames = {
|
|||
|
||||
mcl_copper.stairs_descs = {
|
||||
["copper_cut"] = {
|
||||
S("Slab of Cut Copper"), S("Double Slab of Cut Copper"), S("Stairs of Cut Copper"),
|
||||
S("Slab of Cut Copper"),
|
||||
S("Double Slab of Cut Copper"),
|
||||
S("Stairs of Cut Copper"),
|
||||
},
|
||||
["waxed_copper_cut"] = {
|
||||
S("Waxed Slab of Cut Copper"), S("Waxed Double Slab of Cut Copper"), S("Waxed Stairs of Cut Copper"),
|
||||
S("Waxed Slab of Cut Copper"),
|
||||
S("Waxed Double Slab of Cut Copper"),
|
||||
S("Waxed Stairs of Cut Copper"),
|
||||
},
|
||||
["copper_exposed_cut"] = {
|
||||
S("Slab of Exposed Cut Copper"), S("Double Slab of Exposed Cut Copper"), S("Stairs of Exposed Cut Copper")
|
||||
S("Slab of Exposed Cut Copper"),
|
||||
S("Double Slab of Exposed Cut Copper"),
|
||||
S("Stairs of Exposed Cut Copper")
|
||||
},
|
||||
["waxed_copper_exposed_cut"] = {
|
||||
S("Waxed Slab of Exposed Cut Copper"), S("Waxed Double Slab of Exposed Cut Copper"), S("Waxed Stairs of Exposed Cut Copper")
|
||||
S("Waxed Slab of Exposed Cut Copper"),
|
||||
S("Waxed Double Slab of Exposed Cut Copper"),
|
||||
S("Waxed Stairs of Exposed Cut Copper")
|
||||
},
|
||||
["copper_weathered_cut"] = {
|
||||
S("Slab of Weathered Cut Copper"), S("Double Slab of Weathered Cut Copper"), S("Stairs of Weathered Cut Copper")
|
||||
S("Slab of Weathered Cut Copper"),
|
||||
S("Double Slab of Weathered Cut Copper"),
|
||||
S("Stairs of Weathered Cut Copper")
|
||||
},
|
||||
["waxed_copper_weathered_cut"] = {
|
||||
S("Waxed Slab of Weathered Cut Copper"), S("Waxed Double Slab of Weathered Cut Copper"), S("Waxed Stairs of Weathered Cut Copper")
|
||||
S("Waxed Slab of Weathered Cut Copper"),
|
||||
S("Waxed Double Slab of Weathered Cut Copper"),
|
||||
S("Waxed Stairs of Weathered Cut Copper")
|
||||
},
|
||||
["copper_oxidized_cut"] = {
|
||||
S("Slab of Oxidized Cut Copper"), S("Double Slab of Oxidized Cut Copper"), S("Stairs of Oxidized Cut Copper")
|
||||
S("Slab of Oxidized Cut Copper"),
|
||||
S("Double Slab of Oxidized Cut Copper"),
|
||||
S("Stairs of Oxidized Cut Copper")
|
||||
},
|
||||
["waxed_copper_oxidized_cut"] = {
|
||||
S("Waxed Slab of Oxidized Cut Copper"), S("Waxed Double Slab of Oxidized Cut Copper"), S("Waxed Stairs of Oxidized Cut Copper")
|
||||
S("Waxed Slab of Oxidized Cut Copper"),
|
||||
S("Waxed Double Slab of Oxidized Cut Copper"),
|
||||
S("Waxed Stairs of Oxidized Cut Copper")
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue