mirror of
https://github.com/Kvan7/Exiled-Exchange-2.git
synced 2025-12-14 20:15:51 +00:00
Fix non English language Exceptional search
This commit is contained in:
@@ -1236,7 +1236,7 @@ function parseSuperior(item: ParserState) {
|
||||
(item.rarity === ItemRarity.Rare && item.isUnidentified) ||
|
||||
(item.rarity === ItemRarity.Unique && item.isUnidentified)
|
||||
) {
|
||||
if (_$.ITEM_SUPERIOR.test(item.name)) {
|
||||
if (_$REF.ITEM_SUPERIOR.test(item.name)) {
|
||||
item.name = _$REF.ITEM_SUPERIOR.exec(item.name)![1];
|
||||
}
|
||||
}
|
||||
@@ -1249,7 +1249,7 @@ function parseExceptional(item: ParserState) {
|
||||
(item.rarity === ItemRarity.Rare && item.isUnidentified) ||
|
||||
(item.rarity === ItemRarity.Unique && item.isUnidentified)
|
||||
) {
|
||||
if (_$.ITEM_EXCEPTIONAL.test(item.name)) {
|
||||
if (_$REF.ITEM_EXCEPTIONAL.test(item.name)) {
|
||||
item.name = _$REF.ITEM_EXCEPTIONAL.exec(item.name)![1];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user