[Bug]: The Unborn Lich Ravenous Staff parsing issue

Fixes #624
This commit is contained in:
kvan7
2025-09-14 17:54:23 -05:00
parent e1db4b16ce
commit 496cc344b5
9 changed files with 8 additions and 17 deletions

View File

@@ -1007,15 +1007,6 @@ function parseModifiers(section: string[], item: ParsedItem) {
for (const { modLine, statLines } of groupLinesByMod(section)) {
const { modType, lines } = parseModType(statLines);
// HACK: fix Heart of the Well, can't run `parseModInfoLine` since it's veiled mods are missing a name
if (
modType === ModifierType.Veiled &&
item.info.refName === "Heart of the Well"
) {
item.isVeiled = true;
return "SECTION_PARSED";
}
const modInfo = parseModInfoLine(modLine, modType);
if (
item.category === ItemCategory.Relic &&