mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-22 19:03:43 +01:00
Minor style
This commit is contained in:
parent
efe7434dd4
commit
a7d5653d8f
3
init.lua
3
init.lua
@ -588,6 +588,7 @@ end
|
|||||||
|
|
||||||
local function get_usages(recipe)
|
local function get_usages(recipe)
|
||||||
local added = {}
|
local added = {}
|
||||||
|
|
||||||
for _, item in pairs(recipe.items) do
|
for _, item in pairs(recipe.items) do
|
||||||
item = reg_aliases[item] or item
|
item = reg_aliases[item] or item
|
||||||
if not added[item] then
|
if not added[item] then
|
||||||
@ -1151,7 +1152,7 @@ local function get_rcp_lbl(lang_code, show_usages, unum, rnum, fs, panel, spacin
|
|||||||
end
|
end
|
||||||
|
|
||||||
lbl = translate(lang_code, lbl)
|
lbl = translate(lang_code, lbl)
|
||||||
local lbl_len = #(lbl):gsub("[\128-\191]", "") -- Count chars, not bytes in UTF-8 strings
|
local lbl_len = #lbl:gsub("[\128-\191]", "") -- Count chars, not bytes in UTF-8 strings
|
||||||
local shift = min(0.9, abs(13 - max(13, lbl_len)) * 0.1)
|
local shift = min(0.9, abs(13 - max(13, lbl_len)) * 0.1)
|
||||||
|
|
||||||
fs[#fs + 1] = fmt(FMT.label,
|
fs[#fs + 1] = fmt(FMT.label,
|
||||||
|
Loading…
Reference in New Issue
Block a user