Skip to content

Commit f4c216f

Browse files
committed
Increase item text truncation limit from 600 to 1000 chars
Long rare items with many mods were losing important information. 1000 chars should accommodate most items without truncation.
1 parent 9da6e69 commit f4c216f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Modules/BuildExportPoE2.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ local function itemAdditionalText(item)
419419
appendItalic(item.implicitModLines)
420420
appendPlain(item.explicitModLines)
421421
local text = t_concat(parts, "\n")
422-
if #text > 600 then text = text:sub(1, 597) .. "..." end
422+
if #text > 1000 then text = text:sub(1, 997) .. "..." end
423423
return text
424424
end
425425

0 commit comments

Comments
 (0)