(远征): 修复次级属性表超过等级的数据报错
This commit is contained in:
@@ -15,7 +15,7 @@ const DicExpeditionSubAttrKeys: KeysEnum<DicExpeditionSubAttr> = {
|
||||
attribute: true,
|
||||
};
|
||||
|
||||
export const dicExpeditionSubAttr = new Map<number, DicExpeditionSubAttr>();
|
||||
export const dicExpeditionSubAttr = new Map<number|'max', DicExpeditionSubAttr>();
|
||||
export function loadExpeditionSubAttr() {
|
||||
dicExpeditionSubAttr.clear();
|
||||
let l = 1;
|
||||
@@ -25,6 +25,7 @@ export function loadExpeditionSubAttr() {
|
||||
o.lv = o.level;
|
||||
for(let i = l; i <= o.lv; i++) {
|
||||
dicExpeditionSubAttr.set(l, _.pick(o, Object.keys(DicExpeditionSubAttrKeys)));
|
||||
dicExpeditionSubAttr.set('max', _.pick(o, Object.keys(DicExpeditionSubAttrKeys)));
|
||||
l++;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user