Skip to content

Commit 6cee8de

Browse files
committed
Fix missing mods that were mistaken for reminder text
1 parent d58f147 commit 6cee8de

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/Classes/Item.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ function ItemClass:ParseRaw(raw, rarity, highQuality)
416416
self[influenceItemMap[line]] = true
417417
elseif line == "Requirements:" then
418418
-- nothing to do
419-
elseif line:match("^%(") then
419+
elseif line:match("^%(%a+") then
420420
-- Reminder text, nothing to parse
421421
elseif line:match("^{ ") then
422422
-- We're parsing advanced copy/paste format

0 commit comments

Comments
 (0)