mirror of
https://github.com/minetest-mods/craftguide.git
synced 2024-11-25 20:23:42 +01:00
Fix replacement tooltip
This commit is contained in:
parent
835ab3ba36
commit
1980fefa50
10
init.lua
10
init.lua
@ -1027,12 +1027,16 @@ local function get_grid_fs(lang_code, fs, rcp, spacing)
|
||||
local replace
|
||||
|
||||
if rcp.replacements then
|
||||
replace = {}
|
||||
label = fmt("%s%s\nR", label ~= "" and "\n" or "", label)
|
||||
|
||||
for j = 1, #rcp.replacements do
|
||||
local replacement = rcp.replacements[j]
|
||||
if replacement[1] == name then
|
||||
replace = replace or {}
|
||||
|
||||
if j == 1 then
|
||||
label = fmt("%s%s\nR",
|
||||
label ~= "" and "\n" or "", label)
|
||||
end
|
||||
|
||||
replace[#replace + 1] = replacement[2]
|
||||
end
|
||||
end
|
||||
|
Loading…
Reference in New Issue
Block a user