From 576bbde2e6afd9eeabd24e813b4bf5bc8397c4d1 Mon Sep 17 00:00:00 2001 From: JoseDouglas26 Date: Sun, 5 May 2024 08:57:57 -0300 Subject: [PATCH] Fix tabulation mistake and some small changes --- mods/ITEMS/mcl_copper/descriptions.lua | 34 +++++++++++++++++++------- 1 file changed, 25 insertions(+), 9 deletions(-) diff --git a/mods/ITEMS/mcl_copper/descriptions.lua b/mods/ITEMS/mcl_copper/descriptions.lua index cca2aff9d..3146096f0 100644 --- a/mods/ITEMS/mcl_copper/descriptions.lua +++ b/mods/ITEMS/mcl_copper/descriptions.lua @@ -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") } }