From 58d07ae30ebb147d266091c79953facb4351f73d Mon Sep 17 00:00:00 2001 From: Vanessa Ezekowitz Date: Tue, 30 Apr 2013 22:20:38 -0400 Subject: [PATCH] Removed "Full" from descriptions - it's redundant if everything else says "light", "medium", or "dark". --- init.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/init.lua b/init.lua index 1fd963a..5b535b6 100644 --- a/init.lua +++ b/init.lua @@ -168,7 +168,7 @@ minetest.register_craft( { -- "s50" in a file/item name means "saturation: 50%". -- Brightness levels in the textures are 33% ("dark"), 66% ("medium"), --- 100% ("full" but not so-named), and 150% ("light"). +-- 100% ("full", but not so-named), and 150% ("light"). HUES = { "red", @@ -336,7 +336,7 @@ for i = 1, 12 do }) minetest.register_craftitem("unifieddyes:" .. hue .. "_s50", { - description = "Full " .. hue2 .. " Dye (low saturation)", + description = hue2 .. " Dye (low saturation)", inventory_image = "unifieddyes_" .. hue .. "_s50.png", groups = { dye=1, ["unicolor_"..hue.."_s50"]=1 } })