mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-12-11 02:26:44 +00:00
controller fix 2 maybe?
This commit is contained in:
@@ -37,7 +37,6 @@ import {
|
|||||||
groupLinesByMod,
|
groupLinesByMod,
|
||||||
parseModInfoLine,
|
parseModInfoLine,
|
||||||
ADDED_RUNE_LINE,
|
ADDED_RUNE_LINE,
|
||||||
DESECRATED_LINE,
|
|
||||||
} from "./advanced-mod-desc";
|
} from "./advanced-mod-desc";
|
||||||
import { calcPropPercentile, QUALITY_STATS } from "./calc-q20";
|
import { calcPropPercentile, QUALITY_STATS } from "./calc-q20";
|
||||||
|
|
||||||
@@ -935,7 +934,6 @@ export function parseModifiersPoe2(section: string[], item: ParsedItem) {
|
|||||||
line.endsWith(SCOURGE_LINE) ||
|
line.endsWith(SCOURGE_LINE) ||
|
||||||
line.endsWith(RUNE_LINE) ||
|
line.endsWith(RUNE_LINE) ||
|
||||||
line.endsWith(ADDED_RUNE_LINE) ||
|
line.endsWith(ADDED_RUNE_LINE) ||
|
||||||
line.endsWith(DESECRATED_LINE) ||
|
|
||||||
line.startsWith(_$.GRANTS_SKILL),
|
line.startsWith(_$.GRANTS_SKILL),
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -951,8 +949,6 @@ export function parseModifiersPoe2(section: string[], item: ParsedItem) {
|
|||||||
modType = ModifierType.AddedRune;
|
modType = ModifierType.AddedRune;
|
||||||
} else if (hasEndingTag.endsWith(RUNE_LINE)) {
|
} else if (hasEndingTag.endsWith(RUNE_LINE)) {
|
||||||
modType = ModifierType.Rune;
|
modType = ModifierType.Rune;
|
||||||
} else if (hasEndingTag.endsWith(DESECRATED_LINE)) {
|
|
||||||
modType = ModifierType.Desecrated;
|
|
||||||
} else if (hasEndingTag.startsWith(_$.GRANTS_SKILL)) {
|
} else if (hasEndingTag.startsWith(_$.GRANTS_SKILL)) {
|
||||||
modType = ModifierType.Skill;
|
modType = ModifierType.Skill;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user