Differences From
Artifact [6423ac3b4f]:
20 20 else
21 21 c = l.color(dui.colors.neutral)
22 22 end
23 23
24 24 str = str .. '\n ' .. c:fmt('* ')
25 25
26 26 if prop.title then
27 - str = str .. c:brighten(1.5):fmt(prop.title) .. ': '
27 + str = str .. c:brighten(1.3):fmt(prop.title) .. ': '
28 28 end
29 29
30 30 local lines = minetest.wrap_text(prop.desc, 50, true)
31 31 str = str .. c:fmt(lines[1])
32 32 for i=2,#lines do
33 33 str = str .. '\n' .. string.rep(' ',5) .. c:fmt(lines[i])
34 34 end
35 35 end
36 36 end
37 37 return str
38 38 end;
39 39 }