diff --git a/shared/pubUtils/dictionary/DicGoods.ts b/shared/pubUtils/dictionary/DicGoods.ts index 6e31f8aa9..3e023afb7 100644 --- a/shared/pubUtils/dictionary/DicGoods.ts +++ b/shared/pubUtils/dictionary/DicGoods.ts @@ -112,8 +112,8 @@ arr.forEach(o => { lastJewel.count = material.count; lastJewel.nextJewelId = o.good_id; if (!!o.specialMaterial.ids[0]) { - lastJewel.specialCount = o.specialMaterial.ids[0]; - lastJewel.nextSpecialId = o.specialMaterial.count; + lastJewel.specialCount = o.specialMaterial.count; + lastJewel.nextSpecialId = o.specialMaterial.ids[0]; } dicJewel.set(lastJewel.good_id, _.pick(lastJewel, Object.keys(DicGoodsKeys))); }