Skip to content

Commit

Permalink
Fix error
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin-Pitt committed Feb 1, 2024
1 parent b2dbb6c commit e4a7c14
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/data.js
Original file line number Diff line number Diff line change
Expand Up @@ -534,7 +534,7 @@ export function getItemTips(item) {
if(item.heatValue) category.push(t('顿号燃料'));
if(item.ammoType) category.push(t('顿号弹药'));
const props = [];
for(let index = 0; index < item.descFields)
for(let index = 0; index < item.descFields; ++index)
{
let id = item.descFields[index];
if(id === 40) continue;
Expand Down Expand Up @@ -584,7 +584,7 @@ export function getItemTips(item) {
props.push({
key: '',
value: t('不能手动制造'),
})
});
}

if(state.itemsUnlockedSet.value.has(item.id))
Expand Down

0 comments on commit e4a7c14

Please sign in to comment.