From 6533f8cb81179ad6d2accb036e397c9cc3b5d015 Mon Sep 17 00:00:00 2001 From: kvan7 Date: Tue, 30 Sep 2025 21:33:55 -0500 Subject: [PATCH] drop uncut gem stuff --- renderer/src/parser/Parser.ts | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) diff --git a/renderer/src/parser/Parser.ts b/renderer/src/parser/Parser.ts index a2c896d5..e6855359 100644 --- a/renderer/src/parser/Parser.ts +++ b/renderer/src/parser/Parser.ts @@ -377,14 +377,8 @@ function pickCorrectVariant(item: ParserState) { function parseNamePlate(section: string[]) { let line = section.shift(); - let uncutSkillGem = false; if (!line?.startsWith(_$.ITEM_CLASS)) { - // FIXME: Uncut skill gems (remove) - if (line && section.unshift(line) && isUncutSkillGem(section)) { - uncutSkillGem = true; - } else { - return err("item.parse_error"); - } + return err("item.parse_error"); } line = section.shift(); @@ -444,9 +438,6 @@ function parseNamePlate(section: string[]) { item.rarity = ItemRarity.Unique; break; } - if (uncutSkillGem) { - item.category = ItemCategory.UncutGem; - } return ok(item); }