🐞 fix(诸子列传): 进度条战力计算

This commit is contained in:
luying
2023-07-14 20:21:19 +08:00
parent 848a33f377
commit 5132ff6de8
2 changed files with 3 additions and 3 deletions

View File

@@ -18,8 +18,8 @@ export function loadAuthorsBookPoint() {
arr.forEach(o => {
o.attr = parseAttribute(o.attr);
if(!dicAuthorsBookPoint.has(o.id)) dicAuthorsBookPoint.set(o.id, []);
dicAuthorsBookPoint.get(o.id)?.push(o);
if(!dicAuthorsBookPoint.has(o.bookId)) dicAuthorsBookPoint.set(o.bookId, []);
dicAuthorsBookPoint.get(o.bookId)?.push(o);
});
arr = undefined;
}