Browse Source

修复武器计算错误的问题

tags/v23.3
枫谷剑仙 4 years ago
parent
commit
aef077584c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      script.js

+ 1
- 1
script.js View File

@@ -153,7 +153,7 @@ Member.prototype.getAttrsTypesWithWeapon = function(assist) {
//添加类型
let appendTypes = assistCard.awakenings.filter(ak=>ak >= 83 && ak <= 90);
appendTypes = appendTypes.map(type=>
typekiller_for_type.find(t=>(type - 45) === t.awoken).type);
typekiller_for_type.find(t=>(type - 52) === t.awoken).type);
for (let appendType of appendTypes) {
types.add(appendType);
}


Loading…
Cancel
Save